knowzcode 0.3.6 → 0.4.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/.claude-plugin/marketplace.json +61 -61
- package/.claude-plugin/plugin.json +8 -8
- package/LICENSE +121 -121
- package/README.md +354 -320
- package/agents/analyst.md +114 -114
- package/agents/architect.md +200 -200
- package/agents/builder.md +104 -104
- package/agents/closer.md +177 -95
- package/agents/context-scout.md +54 -54
- package/agents/knowledge-migrator.md +349 -349
- package/agents/knowz-scout.md +83 -83
- package/agents/knowz-scribe.md +180 -180
- package/agents/microfix-specialist.md +135 -135
- package/agents/project-advisor.md +111 -111
- package/agents/reviewer.md +172 -172
- package/agents/security-officer.md +194 -194
- package/agents/test-advisor.md +162 -162
- package/agents/update-coordinator.md +394 -394
- package/bin/knowzcode.mjs +1199 -956
- package/commands/audit.md +328 -328
- package/commands/connect-mcp.md +549 -549
- package/commands/fix.md +107 -107
- package/commands/init.md +500 -439
- package/commands/learn.md +332 -332
- package/commands/plan.md +272 -272
- package/commands/register.md +733 -733
- package/commands/status.md +309 -309
- package/commands/telemetry-setup.md +368 -368
- package/commands/telemetry.md +188 -188
- package/commands/work.md +1204 -1170
- package/knowzcode/automation_manifest.md +59 -59
- package/knowzcode/claude_code_execution.md +431 -420
- package/knowzcode/copilot_execution.md +231 -231
- package/knowzcode/enterprise/compliance_manifest.md +137 -137
- package/knowzcode/enterprise/compliance_status.md +30 -30
- package/knowzcode/enterprise/guidelines/code-quality.md +67 -67
- package/knowzcode/enterprise/guidelines/security.md +355 -355
- package/knowzcode/enterprise/templates/guideline-template.md +55 -55
- package/knowzcode/gitignore.template +13 -13
- package/knowzcode/knowzcode_architecture.md +51 -51
- package/knowzcode/knowzcode_log.md +142 -142
- package/knowzcode/knowzcode_loop.md +596 -593
- package/knowzcode/knowzcode_orchestration.md +66 -66
- package/knowzcode/knowzcode_project.md +48 -48
- package/knowzcode/knowzcode_tracker.md +40 -40
- package/knowzcode/knowzcode_vaults.md +257 -257
- package/knowzcode/mcp_config.md +191 -191
- package/knowzcode/planning/Readme.md +6 -6
- package/knowzcode/platform_adapters.md +1260 -1047
- package/knowzcode/prompts/Execute_Micro_Fix.md +57 -57
- package/knowzcode/prompts/Investigate_Codebase.md +227 -227
- package/knowzcode/prompts/Migrate_Knowledge.md +301 -301
- package/knowzcode/prompts/Refactor_Node.md +72 -72
- package/knowzcode/prompts/Spec_Verification_Checkpoint.md +59 -59
- package/knowzcode/prompts/[LOOP_1A]__Propose_Change_Set.md +52 -52
- package/knowzcode/prompts/[LOOP_1B]__Draft_Specs.md +75 -75
- package/knowzcode/prompts/[LOOP_2A]__Implement_Change_Set.md +55 -55
- package/knowzcode/prompts/[LOOP_2B]__Verify_Implementation.md +72 -72
- package/knowzcode/prompts/[LOOP_3]__Finalize_And_Commit.md +67 -67
- package/knowzcode/specs/Readme.md +10 -10
- package/knowzcode/telemetry_config.md +89 -89
- package/knowzcode/user_preferences.md +120 -120
- package/package.json +53 -53
- package/skills/alias-resolver.json +15 -15
- package/skills/architecture-diff.json +12 -12
- package/skills/check-installation-status.json +14 -14
- package/skills/continue.md +126 -126
- package/skills/environment-guard.json +12 -12
- package/skills/generate-workgroup-id.json +25 -25
- package/skills/install-knowzcode.json +21 -21
- package/skills/load-core-context.json +18 -18
- package/skills/log-entry-builder.json +15 -15
- package/skills/spec-quality-check.json +14 -14
- package/skills/spec-template.json +15 -15
- package/skills/spec-validator.json +25 -25
- package/skills/start-work.md +224 -224
- package/skills/tracker-scan.json +12 -12
- package/skills/tracker-update.json +28 -28
- package/skills/validate-installation.json +14 -14
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
# KnowzCode Automation Manifest
|
|
2
|
-
|
|
3
|
-
This manifest describes the resources that support the KnowzCode workflow.
|
|
4
|
-
|
|
5
|
-
## Commands
|
|
6
|
-
|
|
7
|
-
| Command | Purpose |
|
|
8
|
-
| --- | --- |
|
|
9
|
-
| `/kc:work` | Start feature workflow with TDD, quality gates, and structured phases |
|
|
10
|
-
| `/kc:plan` | Research and investigate using parallel agents before implementing |
|
|
11
|
-
| `/kc:audit` | Run quality audits (spec, architecture, security, integration) |
|
|
12
|
-
| `/kc:fix` | Execute targeted micro-fix workflow |
|
|
13
|
-
| `/kc:init` | Initialize KnowzCode in current project + generate platform adapters |
|
|
14
|
-
| `/kc:telemetry` | Investigate production telemetry |
|
|
15
|
-
| `/kc:telemetry-setup` | Configure telemetry sources |
|
|
16
|
-
| `/kc:connect-mcp` | Configure MCP server connection |
|
|
17
|
-
| `/kc:learn` | Capture learning to vault |
|
|
18
|
-
| `/kc:register` | Register and configure MCP |
|
|
19
|
-
| `/kc:status` | Check MCP and vault status |
|
|
20
|
-
|
|
21
|
-
## Agents
|
|
22
|
-
|
|
23
|
-
| Agent | Phase | Description |
|
|
24
|
-
| --- | --- | --- |
|
|
25
|
-
| `analyst` | 1A | Impact analysis and Change Set proposals |
|
|
26
|
-
| `architect` | 1B | Specification drafting and architecture review |
|
|
27
|
-
| `builder` | 2A | TDD implementation and verification loops |
|
|
28
|
-
| `reviewer` | 2B | Quality audit, security review, compliance |
|
|
29
|
-
| `closer` | 3 | Finalization — specs, tracker, log, architecture |
|
|
30
|
-
| `microfix-specialist` | - | Scope-gated quick fixes |
|
|
31
|
-
| `knowledge-migrator` | - | External knowledge import |
|
|
32
|
-
| `update-coordinator` | - | Framework self-update |
|
|
33
|
-
|
|
34
|
-
## Skills
|
|
35
|
-
|
|
36
|
-
| Skill | Purpose |
|
|
37
|
-
| --- | --- |
|
|
38
|
-
| `start-work` | Detect implementation intent and redirect to /kc:work |
|
|
39
|
-
| `continue` | Detect continuation intent and resume active WorkGroup |
|
|
40
|
-
| `load-core-context` | Load project overview, architecture, tracker into memory |
|
|
41
|
-
| `generate-workgroup-id` | Produce WorkGroupID timestamps |
|
|
42
|
-
| `tracker-update` | Apply validated updates to tracker |
|
|
43
|
-
| `spec-template` | Seed specs with 4-section template |
|
|
44
|
-
| `spec-quality-check` | Verify spec completeness |
|
|
45
|
-
| `log-entry-builder` | Structure log entries |
|
|
46
|
-
| `architecture-diff` | Highlight differences between specs and architecture docs |
|
|
47
|
-
| `environment-guard` | Confirm environment context is complete |
|
|
48
|
-
| `tracker-scan` | Extract current status and WorkGroup assignments |
|
|
49
|
-
| `alias-resolver` | Convert natural language to canonical KnowzCode values |
|
|
50
|
-
| `spec-validator` | Validate individual spec quality |
|
|
51
|
-
|
|
52
|
-
## State Files
|
|
53
|
-
|
|
54
|
-
The authoritative state:
|
|
55
|
-
- `knowzcode/knowzcode_tracker.md` — backlog and node status
|
|
56
|
-
- `knowzcode/knowzcode_log.md` — operational history
|
|
57
|
-
- `knowzcode/specs/` — NodeID specifications
|
|
58
|
-
- `knowzcode/workgroups/` — session todo queues
|
|
59
|
-
- `knowzcode/knowzcode_architecture.md` — architecture documentation
|
|
1
|
+
# KnowzCode Automation Manifest
|
|
2
|
+
|
|
3
|
+
This manifest describes the resources that support the KnowzCode workflow.
|
|
4
|
+
|
|
5
|
+
## Commands
|
|
6
|
+
|
|
7
|
+
| Command | Purpose |
|
|
8
|
+
| --- | --- |
|
|
9
|
+
| `/kc:work` | Start feature workflow with TDD, quality gates, and structured phases |
|
|
10
|
+
| `/kc:plan` | Research and investigate using parallel agents before implementing |
|
|
11
|
+
| `/kc:audit` | Run quality audits (spec, architecture, security, integration) |
|
|
12
|
+
| `/kc:fix` | Execute targeted micro-fix workflow |
|
|
13
|
+
| `/kc:init` | Initialize KnowzCode in current project + generate platform adapters |
|
|
14
|
+
| `/kc:telemetry` | Investigate production telemetry |
|
|
15
|
+
| `/kc:telemetry-setup` | Configure telemetry sources |
|
|
16
|
+
| `/kc:connect-mcp` | Configure MCP server connection |
|
|
17
|
+
| `/kc:learn` | Capture learning to vault |
|
|
18
|
+
| `/kc:register` | Register and configure MCP |
|
|
19
|
+
| `/kc:status` | Check MCP and vault status |
|
|
20
|
+
|
|
21
|
+
## Agents
|
|
22
|
+
|
|
23
|
+
| Agent | Phase | Description |
|
|
24
|
+
| --- | --- | --- |
|
|
25
|
+
| `analyst` | 1A | Impact analysis and Change Set proposals |
|
|
26
|
+
| `architect` | 1B | Specification drafting and architecture review |
|
|
27
|
+
| `builder` | 2A | TDD implementation and verification loops |
|
|
28
|
+
| `reviewer` | 2B | Quality audit, security review, compliance |
|
|
29
|
+
| `closer` | 3 | Finalization — specs, tracker, log, architecture |
|
|
30
|
+
| `microfix-specialist` | - | Scope-gated quick fixes |
|
|
31
|
+
| `knowledge-migrator` | - | External knowledge import |
|
|
32
|
+
| `update-coordinator` | - | Framework self-update |
|
|
33
|
+
|
|
34
|
+
## Skills
|
|
35
|
+
|
|
36
|
+
| Skill | Purpose |
|
|
37
|
+
| --- | --- |
|
|
38
|
+
| `start-work` | Detect implementation intent and redirect to /kc:work |
|
|
39
|
+
| `continue` | Detect continuation intent and resume active WorkGroup |
|
|
40
|
+
| `load-core-context` | Load project overview, architecture, tracker into memory |
|
|
41
|
+
| `generate-workgroup-id` | Produce WorkGroupID timestamps |
|
|
42
|
+
| `tracker-update` | Apply validated updates to tracker |
|
|
43
|
+
| `spec-template` | Seed specs with 4-section template |
|
|
44
|
+
| `spec-quality-check` | Verify spec completeness |
|
|
45
|
+
| `log-entry-builder` | Structure log entries |
|
|
46
|
+
| `architecture-diff` | Highlight differences between specs and architecture docs |
|
|
47
|
+
| `environment-guard` | Confirm environment context is complete |
|
|
48
|
+
| `tracker-scan` | Extract current status and WorkGroup assignments |
|
|
49
|
+
| `alias-resolver` | Convert natural language to canonical KnowzCode values |
|
|
50
|
+
| `spec-validator` | Validate individual spec quality |
|
|
51
|
+
|
|
52
|
+
## State Files
|
|
53
|
+
|
|
54
|
+
The authoritative state:
|
|
55
|
+
- `knowzcode/knowzcode_tracker.md` — backlog and node status
|
|
56
|
+
- `knowzcode/knowzcode_log.md` — operational history
|
|
57
|
+
- `knowzcode/specs/` — NodeID specifications
|
|
58
|
+
- `knowzcode/workgroups/` — session todo queues
|
|
59
|
+
- `knowzcode/knowzcode_architecture.md` — architecture documentation
|