Factory droid
Use this skill when delegating coding work to Factory Droid's droid CLI for code analysis, edits, specification-first implementation, worktree isolation, or multi-agent missions. Do not use it for small direct edits or when Factory Droid is unavailable.From its SKILL.md
npx -y skills add magnus919/hermes-droid --skill factory-droidAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 5 stars5 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 file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
4.2 KB, 844 tokens by cl100k_base, as published. Nobody here has run it
Factory Droid
Use Factory Droid through the droid CLI to delegate coding tasks. Prefer droid exec for bounded, non-interactive work; use interactive droid only when a user needs to steer the session.
Before You Delegate
- Confirm the task warrants an external coding agent. For a small, well-scoped edit, work directly.
- Work inside the target Git repository and set the command working directory explicitly.
- Verify installation and authentication before assigning a real task:
droid exec -o json --auto low "Respond with: OK" - Use the lowest autonomy level that completes the task. Never use
--skip-permissions-unsafeoutside a disposable sandbox.
For login and BYOK details, read references/authentication.md.
One-Shot Tasks
# Read-only analysis
droid exec "Map the authentication flow."
# Bounded implementation and local validation
droid exec --auto medium "Add retry logic to API calls, update focused tests, and report changed files."
# Parseable result for an orchestrator
droid exec -o json --auto low "List the public functions in src/auth.py."
Use a prompt file rather than shell quoting for complex instructions:
droid exec --auto medium -f .factory/task.md
Autonomy and Isolation
| Level | Use for | Avoid for |
|---|---|---|
| Default | Reconnaissance, reviews, plans | Any file change |
--auto low | Safe, bounded edits | Dependency installs or commits |
--auto medium | Implement, test, and make local commits | Push or deployment |
--auto high | Explicitly authorized push/deploy workflows | Routine development |
For the full decision matrix, read references/autonomy-levels.md.
Use a named worktree for non-trivial tasks so changes are reviewable and isolated:
droid exec --worktree fix-auth-retry --auto medium "Fix the auth retry bug, run focused tests, and leave changes uncommitted for review."
Specification-First Work
Use --use-spec for a change whose requirements or architecture are unclear enough that a plan reduces rework:
droid exec --use-spec --auto medium "Design and implement user profiles with avatar upload."
It costs more because Droid plans and implements. Do not choose it for a mechanical edit.
Mission Mode
Use mission mode only for a clear, multi-file objective that benefits from worker and validator roles:
droid exec --mission --auto high --worktree mission-auth-refactor -f mission.md
Read references/mission-mode.md before writing the mission specification. For model selection and provider-specific identifiers, read references/model-ids.md.
Output and Follow-Through
Request concrete outcomes: changed files, tests run and results, remaining risks, and a session ID when relevant. Inspect the working tree and run the project’s own checks before claiming completion. A Droid result is evidence, not proof.
For session continuation, reasoning effort, tool controls, explicit --cwd, and local session search, read references/advanced-operations.md.
Choosing an Agent
Read references/delegation-comparison.md when Factory Droid is one of several viable coding agents.
Pitfalls
droid execis non-interactive; do not allocate a TTY unless using the interactivedroidapplication.- Dirty worktrees may be preserved. Inspect the printed path before cleanup; never delete a worktree by guesswork.
- Use
-ffor prompts containing shell-sensitive text. - Treat model IDs, provider availability, and pricing as version-sensitive. Verify them rather than presenting examples as permanent facts.
What ships with it: 6 files
7.9 KB alongside SKILL.md
references/
- advanced-operations.md2.2 KB
- authentication.md939 B
- autonomy-levels.md1.4 KB
- delegation-comparison.md1.0 KB
- mission-mode.md1.4 KB
- model-ids.md990 B