@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
|

|
|
3
2
|
|
|
4
3
|
[](https://www.npmjs.com/package/@skyf0xx/hedgehog)
|
|
5
4
|
[](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
package/src/registry/cores.json
CHANGED
|
@@ -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",
|