@jstn-sdk/ma 0.1.0 → 0.1.2
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/.codex/prompts/enforcement.md +1 -1
- package/.codex/prompts/onboarding.md +5 -5
- package/README.md +29 -29
- package/bin/ma.js +13 -1
- package/docs/README.md +2 -1
- package/docs/getting-started.md +10 -8
- package/docs/installed-sdk.md +60 -0
- package/docs/onboarding.md +3 -3
- package/docs/qa/{release-readiness-0.1.0.md → release-readiness-0.1.2.md} +25 -8
- package/docs/release-spec.md +9 -9
- package/docs/skills.md +31 -3
- package/package.json +5 -4
- package/plugins/meta-architect/.app.json +1 -1
- package/plugins/meta-architect/.codex-plugin/plugin.json +2 -2
- package/plugins/meta-architect/.mcp.json +1 -1
- package/plugins/meta-architect/README.md +2 -2
- package/plugins/meta-architect/skills/arch/agents/openai.yaml +2 -2
- package/plugins/meta-architect/skills/build/agents/openai.yaml +2 -2
- package/plugins/meta-architect/skills/flow/agents/openai.yaml +2 -2
- package/plugins/meta-architect/skills/meta-architect/agents/openai.yaml +2 -2
- package/plugins/meta-architect/skills/meta-architect/references/core-release-rules.md +1 -1
- package/plugins/meta-architect/skills/sage/agents/openai.yaml +2 -2
- package/plugins/meta-architect/skills/vet/agents/openai.yaml +2 -2
- package/plugins/meta-architect/skills/vibe/agents/openai.yaml +2 -2
- package/scripts/postinstall.js +7 -3
- package/skills/arch/agents/openai.yaml +2 -2
- package/skills/build/agents/openai.yaml +2 -2
- package/skills/flow/agents/openai.yaml +2 -2
- package/skills/meta-architect/agents/openai.yaml +2 -2
- package/skills/meta-architect/references/core-release-rules.md +1 -1
- package/skills/sage/agents/openai.yaml +2 -2
- package/skills/vet/agents/openai.yaml +2 -2
- package/skills/vibe/agents/openai.yaml +2 -2
- package/src/launcher.js +3 -2
- package/src/mcp-live-client.js +1 -1
- package/src/runtime-artifacts.js +2 -2
- package/src/skill-installer.js +151 -2
- package/src/skills.js +3 -3
- package/templates/AGENTS.md +130 -0
- package/templates/catalog-manifest.json +22 -0
- package/templates/model-instructions/core.md +39 -0
- package/templates/model-instructions/release.md +41 -0
- package/templates/model-instructions/security.md +22 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Security Model Instructions
|
|
2
|
+
|
|
3
|
+
These instructions apply to any surface that influences security claims, gate behavior, or dependency trust.
|
|
4
|
+
|
|
5
|
+
## Core security rules
|
|
6
|
+
|
|
7
|
+
- Treat unresolved high-risk findings as release blockers.
|
|
8
|
+
- Never invent evidence or pretend a dependency is verified without a real source.
|
|
9
|
+
- Prefer safer alternatives and explicit blockers over optimistic assumptions.
|
|
10
|
+
|
|
11
|
+
## Evidence integrity
|
|
12
|
+
|
|
13
|
+
- Exact approved sources are stronger than fallback sources.
|
|
14
|
+
- Fallback policy should not silently unlock builds.
|
|
15
|
+
- Security review output must remain inspectable in committed product artifacts or generated local evidence files.
|
|
16
|
+
|
|
17
|
+
## Communication rule
|
|
18
|
+
|
|
19
|
+
When documenting security behavior:
|
|
20
|
+
- be explicit about what is baseline review versus deep review
|
|
21
|
+
- avoid “safe by default” claims unless the code and workflow actually enforce them
|
|
22
|
+
- explain blocked paths, not just happy paths
|