@skyf0xx/hedgehog 5.1.8 → 5.2.0

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
@@ -1,9 +1,10 @@
1
- # H E D G E H O G
2
1
  ![Incredible Software Engineer](https://raw.githubusercontent.com/skyf0xx/hedgehog/master/docs/images/incredible.png)
3
2
 
4
3
  [![Total downloads](https://raw.githubusercontent.com/skyf0xx/hedgehog/master/badges/npm-downloads.svg)](https://www.npmjs.com/package/@skyf0xx/hedgehog)
5
4
  [![Support Hedgehog](https://raw.githubusercontent.com/skyf0xx/hedgehog/master/badges/kofi-top.svg)](https://ko-fi.com/skyf0xx)
6
5
 
6
+ # H E D G E H O G
7
+
7
8
  AI can write code in seconds.
8
9
 
9
10
  But as projects grow, context fills up, **architecture drifts**, and every new feature becomes harder to change safely.
@@ -153,6 +154,24 @@ Hook
153
154
  Screen
154
155
  ```
155
156
 
157
+ ### DeepSeek Harness plugins
158
+
159
+ Tools, hooks, and extensions for DSH's Cordis-based agent framework:
160
+
161
+ ``` text
162
+ Scaffold
163
+
164
+ Logic
165
+
166
+ Wiring
167
+
168
+ Smoke
169
+
170
+ Bundle
171
+
172
+ Join
173
+ ```
174
+
156
175
  ### Anything else
157
176
 
158
177
  A CLI, a library, a browser extension, a data pipeline, etc. gets its build order.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyf0xx/hedgehog",
3
- "version": "5.1.8",
3
+ "version": "5.2.0",
4
4
  "description": "Install the Hedgehog build discipline (agents + skills) into a repo, for Claude Code, Cursor, or Gemini CLI.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -14,6 +14,7 @@ export const AGENT_CAPABILITY = {
14
14
  'backend-eng': 'full',
15
15
  bootstrap: 'full',
16
16
  'front-end-eng': 'full',
17
+ 'harness-eng': 'full',
17
18
  'landing-builder': 'full',
18
19
  'landing-copywriter': 'full',
19
20
  'landing-executor': 'full',
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hedgehog",
3
- "version": "5.1.3",
3
+ "version": "5.2.0",
4
4
  "description": "Hedgehog build discipline: ordered, tested, verified build steps.",
5
5
  "contextFileName": "GEMINI.md"
6
6
  }
@@ -27,6 +27,15 @@
27
27
  "repository": "https://github.com/skyf0xx/hedgehog-core-landing-page",
28
28
  "selects_when": "The description is a marketing/announcement/waitlist/portfolio page (or a small handful of such pages) with no persistent domain data of its own. A page that only collects an email into a third-party form service, or has no state at all, qualifies. The bar is \"no domain module\" — a landing page with a dozen sections is still landing-page, not promoted to full-stack-app for being long."
29
29
  },
30
+ {
31
+ "name": "deepseek-harness",
32
+ "flag": "--deepseek-harness",
33
+ "package": "@skyf0xx/hedgehog-core-deepseek-harness",
34
+ "version": "^0.1.0",
35
+ "language": "typescript",
36
+ "repository": "https://github.com/skyf0xx/hedgehog-core-deepseek-harness",
37
+ "selects_when": "The description names building a plugin, tool, hook, or extension for DeepSeek Harness (DSH) — a Cordis-based agent framework — or otherwise extending an existing DSH installation with new capabilities via its plugin/bundle system. Concrete signals: DSH, DeepSeek Harness, Cordis, `defineTool`, `ctx.tools.register`, a `cordis.patch.yml` manifest, or a request to add a tool that a DSH agent can call. This is the core most often confused with authored: authored fits when no shipped core matches and the planner must design a system shape from scratch, but a DSH plugin already has a fixed, battle-tested shape (the six-layer scaffold → logic → wiring → smoke → bundle → join sequence, one plugin per intent) that authored's from-scratch design would only reinvent worse. Route here whenever the target of the work is a DSH plugin, not a general \"no other core fits\" fallback."
38
+ },
30
39
  {
31
40
  "name": "authored",
32
41
  "package": "@skyf0xx/hedgehog-core-authored",