用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/joshka0/foxctl --skill foxctl-code-analysis命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | foxctl Code Analysis |
| description | Analyze code with foxctl skills - symbols, complexity, diffs, security scanning, and imports. |
Extract insights from codebases using specialized analysis skills.
# Symbols (functions, types, methods)
foxctl run code/symbols --input '{"path": "src/main.go"}'
# Complexity metrics
foxctl run code/complexity --input '{"path": "src/", "recursive": true}'
# Unified diffs
foxctl run code/diff --input '{"old": "file.bak", "new": "file.go"}'
# Security scanning
foxctl run code/security --input '{"path": ".", "recursive": true}'
# Import analysis
foxctl run code/imports --input '{"path": "internal/", "recursive": true}'
# Smart code search
foxctl run code/smart_search --input '{"query": "error handling", "files": ["handler.go"]}'
# Repo graph index
# Builds are incremental by default; use `--incremental=false` for a full rebuild.
# For TS/Elixir-only repos, add `--go=false` (otherwise Go indexing may fail).
foxctl index repo build --dry-run --workspace . --go --typescript --elixir
foxctl index repo build --workspace . --go --typescript --elixir
foxctl run repo/index_build --input '{"workspace": ".", "include_go": true, "include_typescript": true}'
foxctl index repo search --workspace . --query "Supervisor"
foxctl index repo expand --workspace . --seed "<node-id>" --edge CALLS --edge REFERS_TO
# Separate summary enrichment
foxctl index file-summaries --workspace .
foxctl index symbol-summaries --workspace .
foxctl index repo enrich summaries --workspace .
foxctl run repo/index_enrich_summaries --input '{"workspace": "."}'
# DAG grep (explanation subgraph from repoindex)
foxctl run code/dag_grep --input '{"query":"repoindex builder","render":"tree","edge_sets":["structural"],"depth":2,"budget":80,"k":5}'
# Git operations
foxctl run code/git --input '{"action": "log", "count": 10}'
foxctl run code/git --input '{"action": "blame", "path": "main.go"}'
Full docs: ~/.foxctl/share/configs/skills/foxctl-code/Skill.md