@wefter/opencode 0.2.0 → 0.2.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.
Files changed (94) hide show
  1. package/CHANGELOG.md +36 -25
  2. package/LICENSE +21 -21
  3. package/README.md +126 -125
  4. package/bin/wefter.js +8 -8
  5. package/docs/ARCHITECTURE.md +75 -75
  6. package/docs/INSTALLATION.md +47 -47
  7. package/docs/SAFETY_MODEL.md +17 -17
  8. package/docs/SELF_AUDIT.md +37 -35
  9. package/docs/WORKFLOWS.md +17 -15
  10. package/package.json +45 -45
  11. package/schemas/documentation-audit-profile.schema.json +55 -55
  12. package/schemas/product-shaping-config.schema.json +63 -63
  13. package/schemas/product-shaping-contract.schema.json +204 -204
  14. package/schemas/product-shaping-profile.schema.json +39 -39
  15. package/schemas/product-shaping-run-manifest.schema.json +103 -103
  16. package/schemas/run-manifest.schema.json +14 -14
  17. package/schemas/wefter.config.schema.json +62 -62
  18. package/schemas/work-unit-config.schema.json +51 -44
  19. package/schemas/work-unit-profile.schema.json +38 -38
  20. package/schemas/work-unit-review-result.schema.json +13 -13
  21. package/schemas/workflow-manifest.schema.json +31 -21
  22. package/src/cli/main.js +2696 -2646
  23. package/src/workflows/documentation-audit/README.md +37 -37
  24. package/src/workflows/documentation-audit/templates/README.md.tmpl +47 -47
  25. package/src/workflows/documentation-audit/templates/opencode/agent/wefter-doc-audit-consolidator.md.tmpl +27 -27
  26. package/src/workflows/documentation-audit/templates/opencode/agent/wefter-doc-audit-orchestrator.md.tmpl +69 -65
  27. package/src/workflows/documentation-audit/templates/opencode/agent/wefter-doc-audit-profile-builder.md.tmpl +58 -58
  28. package/src/workflows/documentation-audit/templates/opencode/agent/wefter-doc-audit-validator.md.tmpl +26 -26
  29. package/src/workflows/documentation-audit/templates/opencode/agent/wefter-doc-auditor.md.tmpl +31 -28
  30. package/src/workflows/documentation-audit/templates/opencode/skills/documentation-audit/SKILL.md.tmpl +39 -38
  31. package/src/workflows/documentation-audit/templates/prompts/auditor-prompt.md +98 -97
  32. package/src/workflows/documentation-audit/templates/prompts/consolidator-prompt.md +84 -84
  33. package/src/workflows/documentation-audit/templates/prompts/validator-prompt.md +92 -92
  34. package/src/workflows/documentation-audit/workflow.json +24 -24
  35. package/src/workflows/documentation-repair/README.md +11 -11
  36. package/src/workflows/documentation-repair/templates/opencode/agent/wefter-doc-repair-orchestrator.md.tmpl +33 -33
  37. package/src/workflows/documentation-repair/templates/opencode/agent/wefter-doc-repair-planner.md.tmpl +17 -17
  38. package/src/workflows/documentation-repair/templates/opencode/agent/wefter-doc-repair-reviewer.md.tmpl +17 -17
  39. package/src/workflows/documentation-repair/templates/opencode/agent/wefter-doc-repairer.md.tmpl +14 -14
  40. package/src/workflows/documentation-repair/templates/opencode/skills/documentation-repair/SKILL.md.tmpl +17 -17
  41. package/src/workflows/documentation-repair/templates/prompts/repair-apply-prompt.md +43 -43
  42. package/src/workflows/documentation-repair/templates/prompts/repair-plan-prompt.md +73 -73
  43. package/src/workflows/documentation-repair/templates/prompts/repair-review-prompt.md +47 -47
  44. package/src/workflows/documentation-repair/workflow.json +10 -10
  45. package/src/workflows/product-shaping/README.md +1245 -1245
  46. package/src/workflows/product-shaping/compatibility.md +33 -33
  47. package/src/workflows/product-shaping/contracts/product-spec-contract.json +250 -250
  48. package/src/workflows/product-shaping/templates/default-config.json +34 -34
  49. package/src/workflows/product-shaping/templates/default-profile.json +48 -48
  50. package/src/workflows/product-shaping/templates/documentation-audit/workflow-self-audit-auditor-prompt.md +117 -116
  51. package/src/workflows/product-shaping/templates/documentation-audit-profile.json +80 -80
  52. package/src/workflows/product-shaping/templates/opencode/agent/wefter-product-auditor.md.tmpl +22 -22
  53. package/src/workflows/product-shaping/templates/opencode/agent/wefter-product-domain-modeler.md.tmpl +31 -31
  54. package/src/workflows/product-shaping/templates/opencode/agent/wefter-product-intake-analyst.md.tmpl +31 -31
  55. package/src/workflows/product-shaping/templates/opencode/agent/wefter-product-orchestrator.md.tmpl +48 -48
  56. package/src/workflows/product-shaping/templates/opencode/agent/wefter-product-reference-researcher.md.tmpl +29 -29
  57. package/src/workflows/product-shaping/templates/opencode/agent/wefter-product-release-planner.md.tmpl +34 -34
  58. package/src/workflows/product-shaping/templates/opencode/agent/wefter-product-repairer.md.tmpl +25 -25
  59. package/src/workflows/product-shaping/templates/opencode/agent/wefter-product-shaper.md.tmpl +31 -31
  60. package/src/workflows/product-shaping/templates/opencode/agent/wefter-product-validator.md.tmpl +23 -23
  61. package/src/workflows/product-shaping/templates/opencode/skills/product-shaping/SKILL.md.tmpl +45 -45
  62. package/src/workflows/product-shaping/templates/prompts/domain-modeler-prompt.md +27 -27
  63. package/src/workflows/product-shaping/templates/prompts/intake-prompt.md +30 -30
  64. package/src/workflows/product-shaping/templates/prompts/product-auditor-prompt.md +53 -53
  65. package/src/workflows/product-shaping/templates/prompts/product-repairer-prompt.md +25 -25
  66. package/src/workflows/product-shaping/templates/prompts/product-shaper-prompt.md +26 -26
  67. package/src/workflows/product-shaping/templates/prompts/product-validator-prompt.md +55 -55
  68. package/src/workflows/product-shaping/templates/prompts/reference-research-prompt.md +25 -25
  69. package/src/workflows/product-shaping/templates/prompts/release-planner-prompt.md +34 -34
  70. package/src/workflows/product-shaping/workflow.json +33 -33
  71. package/src/workflows/technical-shaping/README.md +7 -5
  72. package/src/workflows/technical-shaping/workflow.json +14 -10
  73. package/src/workflows/work-unit-implementation/README.md +71 -71
  74. package/src/workflows/work-unit-implementation/templates/default-config.json +46 -46
  75. package/src/workflows/work-unit-implementation/templates/default-profile.json +57 -57
  76. package/src/workflows/work-unit-implementation/templates/opencode/agent/wefter-work-unit-orchestrator.md.tmpl +62 -62
  77. package/src/workflows/work-unit-implementation/templates/opencode/agent/wefter-work-unit-plan-auditor.md.tmpl +26 -26
  78. package/src/workflows/work-unit-implementation/templates/opencode/agent/wefter-work-unit-plan-consolidator.md.tmpl +26 -26
  79. package/src/workflows/work-unit-implementation/templates/opencode/agent/wefter-work-unit-plan-repairer.md.tmpl +25 -25
  80. package/src/workflows/work-unit-implementation/templates/opencode/agent/wefter-work-unit-plan-validator.md.tmpl +25 -25
  81. package/src/workflows/work-unit-implementation/templates/opencode/agent/wefter-work-unit-planner.md.tmpl +27 -27
  82. package/src/workflows/work-unit-implementation/templates/opencode/agent/wefter-work-unit-task-implementer.md.tmpl +30 -30
  83. package/src/workflows/work-unit-implementation/templates/opencode/agent/wefter-work-unit-task-reviewer.md.tmpl +28 -28
  84. package/src/workflows/work-unit-implementation/templates/opencode/agent/wefter-work-unit-validator.md.tmpl +26 -26
  85. package/src/workflows/work-unit-implementation/templates/opencode/skills/work-unit-implementation/SKILL.md.tmpl +25 -25
  86. package/src/workflows/work-unit-implementation/templates/prompts/plan-auditor-prompt.md +89 -89
  87. package/src/workflows/work-unit-implementation/templates/prompts/plan-consolidator-prompt.md +64 -64
  88. package/src/workflows/work-unit-implementation/templates/prompts/plan-repairer-prompt.md +42 -42
  89. package/src/workflows/work-unit-implementation/templates/prompts/plan-validator-prompt.md +84 -84
  90. package/src/workflows/work-unit-implementation/templates/prompts/planner-prompt.md +150 -150
  91. package/src/workflows/work-unit-implementation/templates/prompts/task-implementation-prompt.md +57 -57
  92. package/src/workflows/work-unit-implementation/templates/prompts/task-review-prompt.md +69 -69
  93. package/src/workflows/work-unit-implementation/templates/prompts/work-unit-validator-prompt.md +50 -50
  94. package/src/workflows/work-unit-implementation/workflow.json +14 -14

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.