一键导入
new-fish-function
Scaffold a new fish function in config/fish/functions/ with proper conventions and event handling.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Scaffold a new fish function in config/fish/functions/ with proper conventions and event handling.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use for any question about a codebase, its architecture, file relationships, or project content — especially when graphify-out/ exists, where the question should be treated as a graphify query first. Turns any input (code, docs, papers, images, videos) into a persistent knowledge graph with god nodes, community detection, and query/path/explain tools.
Scaffold a new helper script in local/bin/ with proper boilerplate, msgr sourcing, and documentation tag.
Scaffold a bats test file in tests/<script>.bats matching a script in local/bin/<script>. Use when adding tests for an existing script that lacks coverage.
Scaffold a new theme handler in config/theme/handlers.d/<app>. Use when adding dark/light theme support for an app the orchestrator does not yet flip.
Validate fish scripts after editing. Apply when writing or modifying any .fish file in config/fish/.
Deterministic adversarial code review focused on provable failures. Optimized for agent execution, minimal tokens, and high signal findings across web applications.
| name | new-fish-function |
| description | Scaffold a new fish function in config/fish/functions/ with proper conventions and event handling. |
| user-invocable | true |
| allowed-tools | Bash, Read, Write, Edit |
When creating a new fish function in config/fish/functions/:
Create config/fish/functions/<name>.fish:
function <name> --description '<one-line description>'
# Function logic here
end
--description--argument-names for named parameters--wraps if the function wraps an existing commandconfig/fish/alias.fish insteadRun the fish-validate skill checks:
fish --no-execute config/fish/functions/<name>.fish
fish_indent --check config/fish/functions/<name>.fish