npx skills add smithery/plurigrid --skill bafishka
plurigrid/asi
bafishka
π Rust-native Fish shell-friendly file operations with Steel-backed SCI Clojure evaluation.
Installation
$
npx skills add plurigrid/asi --skill bafishka
Also in this package
Other skills from plurigrid/asi Β· top by installs.
npx skills add plurigrid/asi
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed β the skill may still install via the CLI.
Claude Code
Not declared
Cursor
Not declared
Codex
Not declared
GitHub Copilot
Not declared
Windsurf
Not declared
Gemini CLI
Not declared
Cline
Not declared
OpenCode
Not declared
Also listed on
Alternate registries and mirrors of this skill.
Repository health
Stars
62
License
LICENSE
Default branch
main
Open issues
3
Status
Active
Skill metadata
Parsed from SKILL.md frontmatter.
More metadata
- trit
- 0
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md3,222 B -
docs
SUMMARY.md110 B
History
- First seen on skills.sh
- First recorded snapshot Β· 7 installs
SKILL.md
Bafishka - Fish Shell + Clojure File Operations
π Rust-native Fish shell-friendly file operations with Steel-backed SCI Clojure evaluation.
Repository
- Source: https://github.com/bmorphism/bafishka
- Language: Clojure (SCI) + Rust
- Seed: 1069 (deterministic)
Core Concept
Bafishka bridges Fish shell ergonomics with Clojure's data processing power:
# Fish shell with Clojure evaluation
baf '(map inc [1 2 3])' # => [2 3 4]
# File operations with Clojure
baf '(fs/glob "**/*.clj" | count)' # => 42
Architecture
ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Bafishka β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β ββββββββββββ ββββββββββββ ββββββββββββββββ β
β β Fish β β Steel β β SCI β β
β β Shell ββββΆβ (Rust) ββββΆβ (Clojure) β β
β ββββββββββββ ββββββββββββ ββββββββββββββββ β
β β β β β
β βΌ βΌ βΌ β
β Readline File I/O Data Xform β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Key Features
Steel Backend
Steel is a Rust Scheme implementation providing:
- Fast native execution
- Seamless Rust FFI
- Async I/O support
SCI Clojure
Small Clojure Interpreter for:
- Full Clojure core library
- REPL evaluation
- Babashka compatibility
Usage Examples
# List files with Clojure processing
baf '(->> (fs/list-dir ".")
(filter #(str/ends-with? % ".md"))
(map fs/file-name))'
# JSON processing
baf '(-> (slurp "data.json")
json/parse-string
:items
count)'
# With deterministic seed (1069)
baf '(gay/color 1069)' # Deterministic color
Integration with plurigrid/asi
With gay-mcp
;; File operations with color coding
(defn colored-ls [dir]
(->> (fs/list-dir dir)
(map (fn [f]
{:file f
:color (gay/color (hash f))}))))
With duckdb-ies
;; Query DuckDB from bafishka
(baf '(duck/query "SELECT * FROM files WHERE mtime > now() - interval 1 hour"))
Configuration
# ~/.config/fish/conf.d/bafishka.fish
set -gx BAF_SEED 1069
set -gx BAF_HISTORY ~/.baf_history
alias baf 'bafishka eval'
Related Skills
gay-mcp- Deterministic colorsduckdb-ies- Database integrationpolyglot-spi- Multi-language SPIabductive-repl- REPL patterns