coding-agent
3
总安装量
1
周安装量
#58719
全站排名
安装命令
npx skills add https://github.com/ninehills/skills --skill coding-agent
Agent 安装分布
amp
1
cline
1
opencode
1
cursor
1
continue
1
kimi-cli
1
Skill 文档
Coding Agent Skill
Delegate coding tasks to Claude Code â your local coding subagent (“junior assistant”).
Quick Check
# Check if Claude Code is available and authenticated
alma coding-agent status
Delegate a Task
# Run a coding task in a specific directory
alma coding-agent run --dir /path/to/project "fix the bug in server.ts where..."
# Run with dangerously-skip-permissions for fully autonomous work
alma coding-agent run --dir /path/to/project --yolo "refactor the auth module to use JWT"
When to Use
- Multi-file refactoring â Claude Code can edit across many files at once
- Complex bug fixes â when the fix requires understanding a large codebase
- New features â scaffolding, implementation, and testing in one go
- Code review & cleanup â let Claude Code analyze and improve code quality
- Any task you’d normally do in a terminal â it has full shell + file access
When NOT to Use
- Simple one-liner fixes you can do with Bash directly
- Non-coding tasks (use other skills instead)
- When Claude Code is not available (
alma coding-agent statusreturns unavailable)
Tips
- Be specific in your task description â the more context, the better
- Specify the working directory with
--dirso Claude Code knows where to work - Use
--yolofor trusted tasks that don’t need permission prompts - Results are returned as text â you’ll see what Claude Code did and can relay to the user