knowzcode 0.2.1 → 0.3.1
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/architect.md +26 -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/init.md +116 -1
- package/commands/plan.md +23 -10
- package/commands/work.md +235 -48
- package/knowzcode/claude_code_execution.md +64 -1
- 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 +588 -26
- 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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "generate-workgroup-id",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
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.1",
|
|
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