Help gnadd
Git-Native Agent-Driven Development — a GitHub-native workflow for coding agents (Cursor, Claude Code, and more), enforced by tested Agent Skills
npx -y skills add AlexHagemeister/gnadd --skill help-gnaddAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 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
GNADD workflow orientation: GitHub issues as backlog, describe-vs-track file rule, and which GNADD skill handles each workflow step. Use when the user asks about GNADD, agent-driven development workflow, project context files, tasks.md versus issues, startup guidance, how to set up work, or how to install, update, or refresh the GNADD skills themselves. Do not use for routine coding unless the question is workflow-shaped.
SKILL.md
5.5 KB, as published. Nobody here has run it
GNADD Help
Provide lightweight orientation for Git-Native Agent-Driven Development (GNADD). Do not run git commands from this skill; route mechanics to the operational skills.
Core Model
- GitHub is the system of record: issues capture intent, branches hold work, PRs record what shipped, and git history is the audit trail.
- The seven operational skills drive the loop:
prime-gnadd,new-issue-gnadd,start-issue-gnadd,commit-gnadd,resolve-issue-gnadd,quickfix-gnadd(the no-issue fast path for trivial changes), andyolo-gnadd(autonomous full-loop on a decided unit; explicit invocation only). Their git mechanics run through a bundled deterministic script (gnadd.sh), not improvised commands. - Enforcement is layered, lowest layer that can hold each invariant: GitHub
server rules (
gnadd init— squash-only merges, PR-required main), the script (ff-only syncs, divergence halts, gated cleanup), the skills (judgment and conversation), and the human (reading the diff before merge). - Recovery from bad states has a sanctioned path:
gnadd.sh doctor(bundled withprime-gnadd) diagnoses and offers lossless fixes. Never improvisereset/forcerecoveries. - The user's load-bearing job is to describe desired behavior, answer scope questions, and read diffs before merge.
Describe vs Track
Files that describe stable truth are fine. Files that track mutable state should not exist.
- Keep: README vision, project conventions, stable reference docs.
- Avoid: task lists, progress files, maintained plans, status checklists.
- Test: would the agent need to keep this file up to date? If yes, that state belongs in GitHub issues, PRs, branches, or commits instead.
Skill Router
- Adopt or realign a repo: use
/audit-gnadd. - Start a session or inspect state: use
/prime-gnadd. - Capture new work: use
/new-issue-gnadd. - Begin or resume issue work: use
/start-issue-gnadd <N>. - Save progress on an issue branch: use
/commit-gnadd. - Verify, PR, merge, and clean up: use
/resolve-issue-gnadd. - Land one trivial fix (typo, doc line) without an issue: use
/quickfix-gnadd. - Run a decided issue or quickfix end-to-end without mid-loop gates: use
/yolo-gnadd <N or description>(never auto-invoked). - Diagnose or recover from a bad git state (diverged main, stashes,
leftovers): run
gnadd.sh doctorfrom theprime-gnaddskill's directory. - Set up server-side rails on a new repo:
gnadd.sh init(squash-only merges, branch ruleset on main;--ciadds a test workflow stub). - If a git operation seems needed and no skill covers it, ask for a skill-shaped path before improvising raw git commands.
- Update, refresh, or reinstall the skills themselves: see Install & Update below.
Install & Update
The right refresh command depends on how the skills were installed — answer update questions with the path that matches, and never assume a scope.
- Installed from GitHub (
npx skills add AlexHagemeister/gnadd ...): refresh in the same scope as the install —npx skills update -g -yfor a global install,npx skills update -p -yfor a project-local one. Updating the wrong scope leaves the active copies stale without any warning. - Installed from a local checkout (
npx skills add . --copy, e.g. the repo'sscripts/sync.shwhile developing):skills updatecannot track local-path installs and skips them silently — re-runscripts/sync.shfrom the checkout instead. - Caveats for any update: the skills CLI installs from the repo's
default branch, so an update pulls the latest
main, not the last tagged release. Pre-1.0, read the release notes (repo Releases page) before updating.gnadd versionreports the release baseline — the installed copy may include changes merged after that release. Updated skill content applies from the next invocation; newly added or renamed skills may need an agent restart to appear.
Deep Reference
For startup guidance, file-hygiene questions, rationale, or edge cases not covered here, fetch the canonical guide from this pinned URL:
https://raw.githubusercontent.com/AlexHagemeister/gnadd/v0.4.0/GNADD.md
This URL is pinned to a commit, not main, so installed skills do not drift with
unreleased guide changes. The pin is rewritten by scripts/release.sh at release
time — do not hand-edit it out of band.
Closing Guidance
Do not nudge after every answer. Match nudge depth to user intent:
- Purely informational (describe-vs-track, "which skill does X?", rationale questions): no nudge — the answer stands alone.
- Routing toward action ("how do I start?", "where should this state live?"): light nudge — one skill pointer (e.g.
/prime-gnadd,/new-issue-gnadd), no full loop recap. - Session bootstrap ("I'm new here", end-to-end workflow orientation): full nudge toward
/prime-gnaddto see live repo state.
When nudging, keep it to a sentence with an invitational option. Do not restate the skill router table.