knowzcode 0.2.1 → 0.3.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 +6 -3
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +43 -5
- package/agents/analyst.md +31 -0
- package/agents/architect.md +93 -5
- package/agents/context-scout.md +1 -1
- package/agents/project-advisor.md +110 -0
- package/agents/security-officer.md +194 -0
- package/agents/test-advisor.md +162 -0
- package/commands/audit.md +101 -12
- package/commands/connect-mcp.md +24 -0
- package/commands/init.md +116 -1
- package/commands/plan.md +23 -10
- package/commands/work.md +363 -58
- package/knowzcode/claude_code_execution.md +91 -10
- package/knowzcode/copilot_execution.md +231 -0
- package/knowzcode/enterprise/compliance_manifest.md +3 -0
- package/knowzcode/knowzcode_loop.md +3 -1
- package/knowzcode/knowzcode_orchestration.md +66 -0
- package/knowzcode/platform_adapters.md +621 -27
- package/package.json +1 -1
- package/skills/alias-resolver.json +1 -1
- package/skills/architecture-diff.json +1 -1
- package/skills/check-installation-status.json +1 -1
- package/skills/continue.md +2 -1
- package/skills/environment-guard.json +1 -1
- package/skills/generate-workgroup-id.json +1 -1
- package/skills/install-knowzcode.json +1 -1
- package/skills/load-core-context.json +1 -1
- package/skills/log-entry-builder.json +1 -1
- package/skills/spec-quality-check.json +1 -1
- package/skills/spec-template.json +1 -1
- package/skills/spec-validator.json +1 -1
- package/skills/tracker-scan.json +1 -1
- package/skills/tracker-update.json +1 -1
- package/skills/validate-installation.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "alias-resolver",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Resolves friendly natural-language aliases to KnowzCode canonical values (phase, audit, plan, workgroup_type).",
|
|
5
5
|
"parameters": [
|
|
6
6
|
{"name": "domain", "type": "string", "required": true},
|
package/skills/continue.md
CHANGED
|
@@ -52,6 +52,7 @@ Read `knowzcode/workgroups/{WorkGroupID}.md` to determine:
|
|
|
52
52
|
- Change Set
|
|
53
53
|
- Outstanding todos
|
|
54
54
|
- **Autonomous Mode**: If the WorkGroup file contains `**Autonomous Mode**: Active`, restore `AUTONOMOUS_MODE = true` and announce: `> **Autonomous Mode: RESTORED** — continuing with auto-approved gates.`
|
|
55
|
+
- **Orchestration Config**: If `knowzcode/knowzcode_orchestration.md` exists, parse and restore `MAX_BUILDERS`, `SCOUT_MODE`, `MCP_AGENTS_ENABLED`, `DEFAULT_SPECIALISTS` (same logic as work.md Step 2.4). Defaults apply if file is absent.
|
|
55
56
|
|
|
56
57
|
### Step 3: Resume at Current Phase
|
|
57
58
|
|
|
@@ -63,7 +64,7 @@ If the WorkGroup file contains a `## Current Stage` section (instead of `Current
|
|
|
63
64
|
- This is a **parallel-mode WorkGroup**
|
|
64
65
|
- Read the per-NodeID phase table to determine what's in progress
|
|
65
66
|
- Resume by recreating the team and spawning agents appropriate for the current stage:
|
|
66
|
-
- **Stage 0/1**: Spawn analyst + architect
|
|
67
|
+
- **Stage 0/1**: Spawn analyst + architect. If `SCOUT_MODE != "none"` and context is stale, re-spawn scout(s) per SCOUT_MODE.
|
|
67
68
|
- **Stage 2**: Spawn builder(s) per the dependency map + reviewer if any NodeIDs are past implementation
|
|
68
69
|
- **Stage 3**: Spawn closer
|
|
69
70
|
- Builders and reviewer persist through gap loops (don't respawn per iteration)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "generate-workgroup-id",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Generates a WorkGroupID following the KnowzCode convention [type]-[slug]-YYYYMMDD-HHMMSS. The slug is a 2-4 word descriptor extracted from the goal.",
|
|
5
5
|
"parameters": [
|
|
6
6
|
{
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spec-quality-check",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Validates KnowzCode spec files for mandatory sections. Supports new 4-section format and legacy numbered format.",
|
|
5
5
|
"parameters": [
|
|
6
6
|
{"name": "node_id", "type": "string", "required": true}
|
package/skills/tracker-scan.json
CHANGED