framework-mcp 2.4.6 → 2.6.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.
Files changed (59) hide show
  1. package/README.md +35 -10
  2. package/dist/core/safeguard-manager.d.ts.map +1 -1
  3. package/dist/core/safeguard-manager.js +164 -7066
  4. package/dist/core/safeguard-manager.js.map +1 -1
  5. package/dist/index.d.ts +1 -0
  6. package/dist/index.d.ts.map +1 -1
  7. package/dist/index.js.map +1 -1
  8. package/dist/interfaces/http/http-server.d.ts.map +1 -1
  9. package/dist/interfaces/http/http-server.js +6 -40
  10. package/dist/interfaces/http/http-server.js.map +1 -1
  11. package/dist/interfaces/mcp/mcp-server.js +3 -3
  12. package/dist/shared/types.d.ts +49 -60
  13. package/dist/shared/types.d.ts.map +1 -1
  14. package/dist/shared/types.js.map +1 -1
  15. package/package.json +9 -3
  16. package/swagger.json +10 -133
  17. package/.claude/agents/mcp-developer.md +0 -41
  18. package/.claude/agents/project-orchestrator.md +0 -43
  19. package/.claude/agents/version-consistency-reviewer.md +0 -50
  20. package/.claude/commands/speckit.analyze.md +0 -184
  21. package/.claude/commands/speckit.checklist.md +0 -294
  22. package/.claude/commands/speckit.clarify.md +0 -181
  23. package/.claude/commands/speckit.constitution.md +0 -82
  24. package/.claude/commands/speckit.implement.md +0 -135
  25. package/.claude/commands/speckit.plan.md +0 -89
  26. package/.claude/commands/speckit.specify.md +0 -258
  27. package/.claude/commands/speckit.tasks.md +0 -137
  28. package/.claude/commands/speckit.taskstoissues.md +0 -30
  29. package/.claude/config.json +0 -11
  30. package/.claude_config.json +0 -11
  31. package/.do/app.yaml +0 -78
  32. package/.github/dependabot.yml +0 -15
  33. package/.github/workflows/ci.yml +0 -90
  34. package/.github/workflows/release.yml +0 -30
  35. package/.mcp.json +0 -11
  36. package/.specify/memory/constitution.md +0 -50
  37. package/.specify/scripts/bash/check-prerequisites.sh +0 -166
  38. package/.specify/scripts/bash/common.sh +0 -156
  39. package/.specify/scripts/bash/create-new-feature.sh +0 -297
  40. package/.specify/scripts/bash/setup-plan.sh +0 -61
  41. package/.specify/scripts/bash/update-agent-context.sh +0 -799
  42. package/.specify/templates/agent-file-template.md +0 -28
  43. package/.specify/templates/checklist-template.md +0 -40
  44. package/.specify/templates/plan-template.md +0 -104
  45. package/.specify/templates/spec-template.md +0 -115
  46. package/.specify/templates/tasks-template.md +0 -251
  47. package/examples/example-usage.md +0 -293
  48. package/examples/llm-analysis-patterns.md +0 -553
  49. package/examples/vendors.csv +0 -9
  50. package/examples/vendors.json +0 -32
  51. package/scripts/standardize-prompts.js +0 -325
  52. package/scripts/validate-capability-prompts.js +0 -110
  53. package/scripts/validate-documentation.sh +0 -150
  54. package/src/core/safeguard-manager.ts +0 -16891
  55. package/src/index.ts +0 -17
  56. package/src/interfaces/http/http-server.ts +0 -301
  57. package/src/interfaces/mcp/mcp-server.ts +0 -165
  58. package/src/shared/types.ts +0 -337
  59. package/tsconfig.json +0 -23
package/README.md CHANGED
@@ -63,7 +63,7 @@ npm run start:http
63
63
 
64
64
  | Tool | Description |
65
65
  |------|-------------|
66
- | `get_safeguard_details` | Get detailed safeguard breakdown with capability-specific prompts |
66
+ | `get_safeguard_details` | Get detailed safeguard breakdown (governance elements, core requirements, sub-taxonomical elements, implementation suggestions) |
67
67
  | `list_available_safeguards` | List all 153 CIS safeguards |
68
68
 
69
69
  ### HTTP Endpoints
@@ -91,17 +91,42 @@ curl http://localhost:8080/api/safeguards/1.1
91
91
  curl http://localhost:8080/api/safeguards/5.1?include_examples=true
92
92
  ```
93
93
 
94
- ## The 5 Capability Roles
94
+ ## Assessing a Tool Against a Safeguard
95
95
 
96
- Each safeguard includes prompts for five assessment types:
96
+ > **This framework assesses one tool in isolation against one safeguard.**
97
+ > Satisfying a safeguard is a *portfolio* property — it typically takes several
98
+ > tools across several asset types. No verdict below means a safeguard is met,
99
+ > covered, or compliant.
97
100
 
98
- | Role | Field | Use Case |
99
- |------|-------|----------|
100
- | **Full** | `systemPromptFull` | Vendors features have mapped to all the sub taxonomical elements of the safeguard but FULL does not mean it completely does all asset classes, software types, etc, only that it does it for A particular Asset Class |
101
- | **Partial** | `systemPromptPartial` | Vendors features have mapped to some of the sub taxonomical elements of the safeguard but are missing one or another, As with full PARTIAL does not mean they cover all asset classes, software types, only that it does it for a particular Asset Class |
102
- | **Facilitates** | `systemPromptFacilitates` | Tool empowers others to implement, better, faster, more completely, usually with data |
103
- | **Governance** | `systemPromptGovernance` | Policy/process/oversight capabilities |
104
- | **Validates** | `systemPromptValidates` | Audit/evidence/reporting capabilities |
101
+ ### Element completeness what this framework *can* assess
102
+
103
+ A tool is assessed on how many of the safeguard's **taxonomical elements** it addresses:
104
+
105
+ | `elementsAddressed` | Meaning |
106
+ |------|-------------|
107
+ | **`all`** | The tool addresses every taxonomical element of the safeguard |
108
+ | **`some`** | The tool addresses some, but not all, taxonomical elements |
109
+ | **`none`** | The tool addresses no taxonomical elements of this safeguard |
110
+
111
+ The companion `notAddressed` list — which elements the tool *doesn't* reach — is
112
+ often more useful than the verdict itself, because it names what you still need.
113
+
114
+ ### Estate scope — what this framework *cannot* assess
115
+
116
+ `elementsAddressed: "all"` is **not** estate coverage. A tool that addresses every
117
+ element of safeguard 9.2 still only protects the devices it is actually deployed on.
118
+ Whether *your* estate is protected depends on your asset inventory, deployment
119
+ footprint, and licensing — none of which are visible in a vendor response. Every
120
+ assessment therefore carries a `scopeLimits` block stating what remains unassessed.
121
+
122
+ Deliberately absent vocabulary: *meets, satisfies, covers, achieves, compliant.*
123
+ Each of those terminates the sentence and implies the practitioner is finished.
124
+
125
+ ### GRC / policy services
126
+
127
+ Whether a tool is a GRC or policy service is a **single yes/no question asked once
128
+ per tool** (`isGrcOrPolicyService`), not a per-safeguard classification — it is a
129
+ property of the product, not of its relationship to any one safeguard.
105
130
 
106
131
  ## Cloud Deployment
107
132
 
@@ -1 +1 @@
1
- {"version":3,"file":"safeguard-manager.d.ts","sourceRoot":"","sources":["../../src/core/safeguard-manager.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAc,MAAM,oBAAoB,CAAC;AAElE,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,KAAK,CAA+B;IAC5C,OAAO,CAAC,UAAU,CAAwC;IAC1D,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,cAAc,CAAQ;IAC9C,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,sBAAsB,CAAkB;IAChE,OAAO,CAAC,kBAAkB,CAAyB;IACnD,OAAO,CAAC,WAAW,CAAa;;IAQzB,mBAAmB,CAAC,WAAW,EAAE,MAAM,EAAE,eAAe,GAAE,OAAe,GAAG,gBAAgB,GAAG,IAAI;IA4BnG,uBAAuB,IAAI,MAAM,EAAE;IAgBnC,gBAAgB,IAAI,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC;IAIpD,mBAAmB,CAAC,WAAW,EAAE,MAAM,GAAG,IAAI;IAerD,OAAO,CAAC,yBAAyB;IAajC,OAAO,CAAC,uBAAuB;IAS/B,OAAO,CAAC,2BAA2B;IAmCnC;;OAEG;IACI,aAAa,IAAI;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAA;KAAE;IAO7D;;OAEG;IACI,UAAU,IAAI,IAAI;IAKzB,OAAO,CAAC,yBAAyB;IAajC,OAAO,CAAC,yBAAyB;IA2BjC,OAAO,CAAC,oBAAoB;CAwzgB7B"}
1
+ {"version":3,"file":"safeguard-manager.d.ts","sourceRoot":"","sources":["../../src/core/safeguard-manager.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAc,MAAM,oBAAoB,CAAC;AAElE,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,KAAK,CAA+B;IAC5C,OAAO,CAAC,UAAU,CAAwC;IAC1D,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,cAAc,CAAQ;IAC9C,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,sBAAsB,CAAkB;IAChE,OAAO,CAAC,kBAAkB,CAAyB;IACnD,OAAO,CAAC,WAAW,CAAa;;IAQzB,mBAAmB,CAAC,WAAW,EAAE,MAAM,EAAE,eAAe,GAAE,OAAe,GAAG,gBAAgB,GAAG,IAAI;IA4BnG,uBAAuB,IAAI,MAAM,EAAE;IAgBnC,gBAAgB,IAAI,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC;IAIpD,mBAAmB,CAAC,WAAW,EAAE,MAAM,GAAG,IAAI;IAerD,OAAO,CAAC,yBAAyB;IAajC,OAAO,CAAC,uBAAuB;IAS/B,OAAO,CAAC,2BAA2B;IAmCnC;;OAEG;IACI,aAAa,IAAI;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAA;KAAE;IAO7D;;OAEG;IACI,UAAU,IAAI,IAAI;IAKzB,OAAO,CAAC,yBAAyB;IAajC,OAAO,CAAC,yBAAyB;IA2BjC,OAAO,CAAC,oBAAoB;CAu1I7B"}