@skyf0xx/hedgehog 3.0.4 → 3.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -88,21 +88,20 @@ Artifact
88
88
 
89
89
  ### Anything else
90
90
 
91
- A CLI, a library, a browser extension, a data pipeline, a compiler a
92
- project fitting neither shape gets its own build order, designed from
93
- your planning documents at intake rather than chosen from a menu. Run
94
- `init` with no core flag: planning intake names the system shape, picks
91
+ A CLI, a library, a browser extension, a data pipeline, etc. fitting neither shape gets its own build order, designed at intake rather than chosen from a menu.
92
+
93
+ Run `init` with no core flag: planning intake names the system shape, picks
95
94
  the stack, derives the layers, and locks them to `.hedgehog/core.yaml`,
96
95
  then generates that workspace and builds it one verified layer at a time.
97
96
 
98
- The layers are bespoke, the enforcement is the same ordered steps,
99
- scoped file access, a verification command per layer, one commit each.
97
+ The enforcement remains the same: ordered steps,
98
+ scoped file access and a verification command per layer.
100
99
 
101
100
  ![Why Hedgehog works: a different way to build with AI, comparing traditional AI workflow to Hedgehog](https://raw.githubusercontent.com/skyf0xx/hedgehog/master/docs/images/why.png)
102
101
 
103
102
  ## Install
104
103
 
105
- From an empty project folder, ask Claude to run:
104
+ From an empty project folder, run:
106
105
 
107
106
  ``` bash
108
107
  # Full-stack app
@@ -115,7 +114,29 @@ npx @skyf0xx/hedgehog init --landing-page
115
114
  npx @skyf0xx/hedgehog init
116
115
  ```
117
116
 
118
- Then open Claude Code and describe what you want to build.
117
+ Then open your coding agent and describe what you want to build.
118
+
119
+ ### Coding agents
120
+
121
+ Hedgehog installs for **Claude Code** by default. Add a host flag to
122
+ install for another one, or several at once:
123
+
124
+ ``` bash
125
+ npx @skyf0xx/hedgehog init --cursor # Cursor
126
+ npx @skyf0xx/hedgehog init --gemini # Gemini CLI
127
+ npx @skyf0xx/hedgehog init --host=claude,cursor # both
128
+ npx @skyf0xx/hedgehog init --all-hosts # every supported agent
129
+ ```
130
+
131
+ Each one gets the discipline in its own native shape — agents and skills
132
+ in the directory it reads, and the instructions file it loads at session
133
+ start (`CLAUDE.md`, `HEDGEHOG.md`, or `GEMINI.md`).
134
+
135
+ Every install also writes **`AGENTS.md`** at the repo root: an index of
136
+ every agent and skill, when each applies, and the build loop. Coding
137
+ agents that read `AGENTS.md` — Codex, Copilot CLI, OpenCode, and others —
138
+ work from that index, following the same ordered steps and the same
139
+ `hedgehog verify` gate.
119
140
 
120
141
  Plain `init` (no core flag) installs the agents, skills, and build graph
121
142
  that every core shares. Planning intake designs an opinionated build
@@ -129,9 +150,20 @@ To update:
129
150
  npx @skyf0xx/hedgehog update
130
151
  ```
131
152
 
132
- This refreshes `.claude/agents/` and `.claude/skills/` only. It never
133
- touches `CLAUDE.md`, the build graph, the core workspace, or
134
- `skills/BMAD`, since those carry project-specific or write-once content.
153
+ This refreshes the installed agents and skills for every coding agent
154
+ the project was set up for — along with the `AGENTS.md` index derived
155
+ from them. It never touches the instructions file, the build graph, the
156
+ core workspace, or `skills/BMAD`, since those carry project-specific or
157
+ write-once content.
158
+
159
+ To see the build graph:
160
+
161
+ ``` bash
162
+ npx @skyf0xx/hedgehog graph
163
+ ```
164
+
165
+ Starts a small local server and opens a live, read-only diagram of every
166
+ task, status and its dependencies.
135
167
 
136
168
  ## Why Hedgehog
137
169