Agent cli delegation
Skill S3YED/appie-kit/skills/automation/agent-cli-delegation
Build Your Own AI Employee. The complete starter kit for OpenClaw + Hermes Agent. 155 deduplicated skills, drag-and-drop workspace, case studies, install scripts.
npx -y skills add S3YED/appie-kit --skill agent-cli-delegationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Umbrella workflow for delegating coding work to local agent CLIs such as Claude Code, Codex, and OpenCode.
SKILL.md
1.7 KB, as published. Nobody here has run it
Agent CLI Delegation
Use this umbrella when the user wants coding work delegated to a local autonomous coding CLI rather than completed entirely in the current Hermes turn.
Choose the agent CLI
| CLI | Best fit | Notes |
|---|---|---|
| Claude Code | Larger refactors, repo-aware implementation, PR-ready changes | Keep prompts scoped and include verification commands. |
| Codex | OpenAI Codex CLI feature/fix work and iterative patching | Provide exact paths, constraints, and tests to run. |
| OpenCode | Alternative coding agent and PR-review workflows | Useful when the user prefers OpenCode or when comparing agents. |
Delegation prompt shape
Include:
- Goal and non-goals.
- Repository path and relevant files.
- Constraints: style, dependencies, APIs, security, backwards compatibility.
- Required verification commands.
- Expected deliverables: patch, tests, summary, risks.
Execution rules
- Run agent CLIs in a tracked terminal/background process, not an untracked shell background.
- Require the child agent to report changed files and verification output.
- Independently verify critical claims: inspect diffs and run tests/checks yourself.
- Never ask a child agent to use credentials, deploy, merge, or delete without explicit user authorization.
Review after delegation
git status --shortandgit diff.- Check for unrelated changes, secrets, generated junk, or destructive edits.
- Run the test/lint/typecheck commands that matter.
- Summarize what was done and what remains.