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.
Files changed (36) hide show
  1. package/.claude-plugin/marketplace.json +6 -3
  2. package/.claude-plugin/plugin.json +1 -1
  3. package/README.md +43 -5
  4. package/agents/analyst.md +31 -0
  5. package/agents/architect.md +93 -5
  6. package/agents/context-scout.md +1 -1
  7. package/agents/project-advisor.md +110 -0
  8. package/agents/security-officer.md +194 -0
  9. package/agents/test-advisor.md +162 -0
  10. package/commands/audit.md +101 -12
  11. package/commands/connect-mcp.md +24 -0
  12. package/commands/init.md +116 -1
  13. package/commands/plan.md +23 -10
  14. package/commands/work.md +363 -58
  15. package/knowzcode/claude_code_execution.md +91 -10
  16. package/knowzcode/copilot_execution.md +231 -0
  17. package/knowzcode/enterprise/compliance_manifest.md +3 -0
  18. package/knowzcode/knowzcode_loop.md +3 -1
  19. package/knowzcode/knowzcode_orchestration.md +66 -0
  20. package/knowzcode/platform_adapters.md +621 -27
  21. package/package.json +1 -1
  22. package/skills/alias-resolver.json +1 -1
  23. package/skills/architecture-diff.json +1 -1
  24. package/skills/check-installation-status.json +1 -1
  25. package/skills/continue.md +2 -1
  26. package/skills/environment-guard.json +1 -1
  27. package/skills/generate-workgroup-id.json +1 -1
  28. package/skills/install-knowzcode.json +1 -1
  29. package/skills/load-core-context.json +1 -1
  30. package/skills/log-entry-builder.json +1 -1
  31. package/skills/spec-quality-check.json +1 -1
  32. package/skills/spec-template.json +1 -1
  33. package/skills/spec-validator.json +1 -1
  34. package/skills/tracker-scan.json +1 -1
  35. package/skills/tracker-update.json +1 -1
  36. package/skills/validate-installation.json +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "knowzcode",
3
- "version": "0.2.1",
3
+ "version": "0.3.3",
4
4
  "description": "Platform-agnostic AI development methodology with TDD, quality gates, and structured workflows",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alias-resolver",
3
- "version": "0.2.1",
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},
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "architecture-diff",
3
- "version": "0.2.1",
3
+ "version": "0.3.3",
4
4
  "description": "Highlights differences between specs and the Mermaid flowchart in knowzcode_architecture.md.",
5
5
  "parameters": [],
6
6
  "actions": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "check-installation-status",
3
- "version": "0.2.1",
3
+ "version": "0.3.3",
4
4
  "description": "Checks if KnowzCode is initialized in the current project and reports current status",
5
5
 
6
6
  "parameters": [],
@@ -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 (scouts if context stale)
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": "environment-guard",
3
- "version": "0.2.1",
3
+ "version": "0.3.3",
4
4
  "description": "Verifies that knowzcode/environment_context.md no longer contains placeholder brackets.",
5
5
  "parameters": [],
6
6
  "actions": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generate-workgroup-id",
3
- "version": "0.2.1",
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": "install-knowzcode",
3
- "version": "0.2.1",
3
+ "version": "0.3.3",
4
4
  "description": "Initializes KnowzCode directory structure and required files in the current project",
5
5
 
6
6
  "parameters": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "load-core-context",
3
- "version": "0.2.1",
3
+ "version": "0.3.3",
4
4
  "description": "Loads the KnowzCode project overview, architecture, tracker, log header, and automation manifest for downstream steps.",
5
5
  "parameters": [],
6
6
  "actions": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "log-entry-builder",
3
- "version": "0.2.1",
3
+ "version": "0.3.3",
4
4
  "description": "Appends structured entries to knowzcode/knowzcode_log.md with KnowzCode formatting.",
5
5
  "parameters": [
6
6
  {"name": "entry_type", "type": "string", "required": true},
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spec-quality-check",
3
- "version": "0.2.1",
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}
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spec-template",
3
- "version": "0.2.1",
3
+ "version": "0.3.3",
4
4
  "description": "Seeds or repairs KnowzCode spec files with the lean 4-section template.",
5
5
  "parameters": [
6
6
  {"name": "node_id", "type": "string", "required": true},
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spec-validator",
3
- "version": "0.2.1",
3
+ "version": "0.3.3",
4
4
  "description": "Validates NodeID specification completeness and quality. Supports new 4-section format (preferred) and legacy numbered sections (deprecated).",
5
5
  "parameters": [
6
6
  {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tracker-scan",
3
- "version": "0.2.1",
3
+ "version": "0.3.3",
4
4
  "description": "Extracts NodeID statuses and WorkGroup assignments from the KnowzCode tracker.",
5
5
  "parameters": [],
6
6
  "actions": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tracker-update",
3
- "version": "0.2.1",
3
+ "version": "0.3.3",
4
4
  "description": "Applies validated updates to knowzcode/knowzcode_tracker.md while preserving table structure.",
5
5
  "parameters": [
6
6
  {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "validate-installation",
3
- "version": "0.2.1",
3
+ "version": "0.3.3",
4
4
  "description": "Validates that KnowzCode installation completed successfully with required directories and files",
5
5
 
6
6
  "parameters": [],