intentdna 1.6.2 → 1.6.3
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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +7 -1
- package/dist/cli/commands/evolve.d.ts +6 -3
- package/dist/cli/commands/evolve.js +78 -32
- package/dist/cli/commands/feedback.d.ts +3 -28
- package/dist/cli/commands/feedback.js +12 -181
- package/dist/cli/index.js +9 -4
- package/dist/hooks/cli.d.ts +27 -1
- package/dist/hooks/cli.js +73 -4
- package/dist/mcp/index.js +2 -0
- package/dist/mcp/tools-observability.d.ts +2 -0
- package/dist/mcp/tools-observability.js +34 -0
- package/dist/report/index.d.ts +2 -0
- package/dist/report/index.js +2 -0
- package/dist/report/kernel-report.d.ts +79 -0
- package/dist/report/kernel-report.js +259 -0
- package/dist/report/kernel-signals.d.ts +38 -0
- package/dist/report/kernel-signals.js +228 -0
- package/package.json +1 -1
- package/spec/README.md +58 -0
package/spec/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Intent DNA — Spec Index
|
|
2
|
+
|
|
3
|
+
[← Back to Repo Wiki](../docs/README.md)
|
|
4
|
+
|
|
5
|
+
This directory contains engineering specs. Use [ROADMAP.md](../ROADMAP.md) as the current planning authority and [DESIGN.md](../DESIGN.md) as the long-term architecture authority.
|
|
6
|
+
|
|
7
|
+
## Status legend
|
|
8
|
+
|
|
9
|
+
- **Canonical** — current contract or design reference.
|
|
10
|
+
- **Active reference** — still useful for current implementation and maintenance.
|
|
11
|
+
- **Completed / historical** — implementation handoff or bugfix record; use for context before changing the related area.
|
|
12
|
+
- **Deferred** — design direction captured, not currently being built.
|
|
13
|
+
|
|
14
|
+
## Specs
|
|
15
|
+
|
|
16
|
+
| Spec | Status | Purpose |
|
|
17
|
+
|------|--------|---------|
|
|
18
|
+
| [schema-spec.md](schema-spec.md) | Canonical | Intent DNA document structure, genes, roles, workflows, cascade, and IR contract. |
|
|
19
|
+
| [foundation-hardening.md](foundation-hardening.md) | Active reference | Reliability, governance, MCP, and tool-experience hardening plan. |
|
|
20
|
+
| [hooks-infra-harness-hardening.md](hooks-infra-harness-hardening.md) | Active reference | Hook boundary schema, enforcement result types, state manager, context/reflection/workflow gates. |
|
|
21
|
+
| [workflow-pipeline.md](workflow-pipeline.md) | Active reference | Workflow pipeline design and state management unification. |
|
|
22
|
+
| [parallel-isolation.md](parallel-isolation.md) | Deferred / design reference | Parallel execution and worktree isolation model. |
|
|
23
|
+
| [multi-config.md](multi-config.md) | Active reference | Multi-template config management, namespace conflicts, template version tracking. |
|
|
24
|
+
| [template-version-namespace-fix.md](template-version-namespace-fix.md) | Completed / historical | Template content hash and namespace-aware cleanup fix plan. |
|
|
25
|
+
| [flutter-rewrite-template-optimization.md](flutter-rewrite-template-optimization.md) | Active reference | Dogfood template optimization for behavior-lock and rescue workflows. |
|
|
26
|
+
| [agent-dispatch-fix.md](agent-dispatch-fix.md) | Completed / historical | F5 agent dispatch vulnerability repair plan. |
|
|
27
|
+
| [control-plane-convergence-handoff-2026-04-24.md](control-plane-convergence-handoff-2026-04-24.md) | Completed / historical | Control-plane convergence handoff and remaining follow-up context. |
|
|
28
|
+
|
|
29
|
+
## By implementation area
|
|
30
|
+
|
|
31
|
+
### Schema and compiler
|
|
32
|
+
|
|
33
|
+
- [schema-spec.md](schema-spec.md)
|
|
34
|
+
- [multi-config.md](multi-config.md)
|
|
35
|
+
- [template-version-namespace-fix.md](template-version-namespace-fix.md)
|
|
36
|
+
|
|
37
|
+
### Hooks and governance
|
|
38
|
+
|
|
39
|
+
- [hooks-infra-harness-hardening.md](hooks-infra-harness-hardening.md)
|
|
40
|
+
- [foundation-hardening.md](foundation-hardening.md)
|
|
41
|
+
- [parallel-isolation.md](parallel-isolation.md)
|
|
42
|
+
|
|
43
|
+
### Workflows and templates
|
|
44
|
+
|
|
45
|
+
- [workflow-pipeline.md](workflow-pipeline.md)
|
|
46
|
+
- [flutter-rewrite-template-optimization.md](flutter-rewrite-template-optimization.md)
|
|
47
|
+
- [agent-dispatch-fix.md](agent-dispatch-fix.md)
|
|
48
|
+
|
|
49
|
+
### Signals, observability, and handoff
|
|
50
|
+
|
|
51
|
+
- [control-plane-convergence-handoff-2026-04-24.md](control-plane-convergence-handoff-2026-04-24.md)
|
|
52
|
+
- [foundation-hardening.md](foundation-hardening.md)
|
|
53
|
+
|
|
54
|
+
## Maintenance rules
|
|
55
|
+
|
|
56
|
+
- New specs should declare whether they are canonical, active, completed/historical, or deferred.
|
|
57
|
+
- When implementation finishes, update this index and [ROADMAP.md](../ROADMAP.md) if the project status changes.
|
|
58
|
+
- Do not use completed specs as current requirements without checking the current code and roadmap.
|