@mnstry/atelier 0.2.0-alpha.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/CHANGELOG.md +383 -0
- package/LICENSE +202 -0
- package/NOTICE +5 -0
- package/README.md +262 -0
- package/SECURITY.md +93 -0
- package/TRADEMARKS.md +88 -0
- package/announcements/2026-08-06-announcements-channel.v1.json +12 -0
- package/announcements/keys/mnstry-announcements.public.v1.json +9 -0
- package/bin/atelier.mjs +2 -0
- package/bin/mnstry-atelier.mjs +3 -0
- package/contracts/analysis-adapter.v1.schema.json +248 -0
- package/contracts/atelier-action-intent.v1.schema.json +143 -0
- package/contracts/atelier-analysis-adapter.v1.schema.json +360 -0
- package/contracts/atelier-attestation.v1.schema.json +239 -0
- package/contracts/atelier-boundary-policy.v1.schema.json +339 -0
- package/contracts/atelier-claim.v1.schema.json +97 -0
- package/contracts/atelier-export.v1.schema.json +1015 -0
- package/contracts/atelier-extension-pack.v1.schema.json +290 -0
- package/contracts/atelier-kit-manifest.v1.schema.json +273 -0
- package/contracts/atelier-lock.v1.schema.json +364 -0
- package/contracts/atelier-migration.v1.schema.json +162 -0
- package/contracts/atelier-project-config.v1.schema.json +352 -0
- package/contracts/atelier-readiness-protocol.v1.schema.json +517 -0
- package/contracts/atelier-readiness-run.v1.schema.json +229 -0
- package/contracts/atelier-readiness.v1.schema.json +457 -0
- package/contracts/compat-baseline.json +10 -0
- package/contracts/git-promote-event.v1.schema.json +145 -0
- package/contracts/knowledge-source-sidecar.v1.schema.json +157 -0
- package/contracts/mnstry-atelier-semantic-profile.v1.json +254 -0
- package/docs/announcements.md +101 -0
- package/docs/atelier-runtime.md +34 -0
- package/docs/attestation.md +201 -0
- package/docs/continuity.md +55 -0
- package/docs/contract-stability.md +111 -0
- package/docs/distributions.md +220 -0
- package/docs/install.md +140 -0
- package/docs/knowledge-graph.md +140 -0
- package/docs/ontology.md +206 -0
- package/docs/release-engineering.md +151 -0
- package/docs/repo-boundary-guard.md +199 -0
- package/docs/tenant-readiness.md +64 -0
- package/docs/upgrade.md +124 -0
- package/fixtures/analysis/invalid/native-graph.v1.json +4 -0
- package/fixtures/analysis/invalid/promoted-claim.v1.json +17 -0
- package/fixtures/analysis/invalid/runtime-import.v1.json +20 -0
- package/fixtures/analysis/valid/output.claims.v1.json +17 -0
- package/fixtures/analysis-adapter/invalid/manifest-hidden-provider.v1.json +24 -0
- package/fixtures/analysis-adapter/invalid/output-frontmatter-mutation.v1.json +21 -0
- package/fixtures/analysis-adapter/invalid/output-native-graph.v1.json +14 -0
- package/fixtures/analysis-adapter/manifest.disabled.v1.json +22 -0
- package/fixtures/analysis-adapter/manifest.enabled-local.v1.json +23 -0
- package/fixtures/analysis-adapter/output.claims.v1.json +21 -0
- package/fixtures/atelier-action-intent/invalid/runtime-mutation-authority.v1.json +16 -0
- package/fixtures/atelier-action-intent/invalid/unknown-top-level-field.v1.json +17 -0
- package/fixtures/atelier-action-intent/invalid/writes-beyond-clipboard.v1.json +16 -0
- package/fixtures/atelier-action-intent/valid/copy-agent-prompt.v1.json +16 -0
- package/fixtures/atelier-action-intent/valid/copy-repo-path.v1.json +22 -0
- package/fixtures/atelier-analysis-adapter/invalid/hidden-model-provider.v1.json +24 -0
- package/fixtures/atelier-analysis-adapter/invalid/inert-with-execute-command.v1.json +24 -0
- package/fixtures/atelier-analysis-adapter/invalid/proposals-with-runtime-import.v1.json +30 -0
- package/fixtures/atelier-analysis-adapter/valid/manifest-inert.v1.json +24 -0
- package/fixtures/atelier-analysis-adapter/valid/proposals-claim-only.v1.json +27 -0
- package/fixtures/atelier-attestation/invalid/bad-digest.v1.json +23 -0
- package/fixtures/atelier-attestation/invalid/conformance-scope.v1.json +23 -0
- package/fixtures/atelier-attestation/invalid/missing-signature.v1.json +22 -0
- package/fixtures/atelier-attestation/invalid/unknown-root-field.v1.json +24 -0
- package/fixtures/atelier-attestation/keys/roundtrip-issuer.public.v1.json +9 -0
- package/fixtures/atelier-attestation/valid/rejected-with-reasons.v1.json +49 -0
- package/fixtures/atelier-attestation/valid/signed-admitted.v1.json +35 -0
- package/fixtures/atelier-attestation/valid/signed-roundtrip.v1.json +29 -0
- package/fixtures/atelier-attestation/valid/unsigned-advisory.v1.json +23 -0
- package/fixtures/atelier-claim/invalid/unknown-provider.v1.json +15 -0
- package/fixtures/atelier-claim/invalid/unknown-top-level-field.v1.json +16 -0
- package/fixtures/atelier-claim/invalid/wrong-schema-const.v1.json +15 -0
- package/fixtures/atelier-claim/valid/adapter-style-proposed-relation.v1.json +19 -0
- package/fixtures/atelier-claim/valid/codex-proposed-relation.v1.json +16 -0
- package/fixtures/atelier-claim/valid/manual-proposed-relation.v1.json +16 -0
- package/fixtures/atelier-claim/valid/readiness-proposed-relation.v1.json +18 -0
- package/fixtures/atelier-export/invalid/dirty-unforced-empty-taint.v1.json +19 -0
- package/fixtures/atelier-export/invalid/object-local-audience-visibility.v1.json +11 -0
- package/fixtures/atelier-export/invalid/open-object-class-owner.v1.json +23 -0
- package/fixtures/atelier-export/invalid/pricing-legacy-amount.v1.json +23 -0
- package/fixtures/atelier-export/invalid/public-disguised-internal-source-ref.v1.json +11 -0
- package/fixtures/atelier-export/invalid/public-nested-private-source-ref.v1.json +17 -0
- package/fixtures/atelier-export/invalid/public-resolved-private-source-ref.v1.json +13 -0
- package/fixtures/atelier-export/invalid/public-resolved-sensitive-source-ref.v1.json +13 -0
- package/fixtures/atelier-export/invalid/public-source-ref-missing-provenance.v1.json +20 -0
- package/fixtures/atelier-export/invalid/public-source-team-kg.json +12 -0
- package/fixtures/atelier-export/invalid/source-node-legacy-visibility.v1.json +21 -0
- package/fixtures/atelier-export/invalid/source-node-unknown-field.v1.json +18 -0
- package/fixtures/atelier-export/invalid/unresolved-public-source-ref.v1.json +11 -0
- package/fixtures/atelier-export/sample-studio-offer.v1.json +397 -0
- package/fixtures/atelier-extension-pack/invalid/bundled-slug-collision.v1.json +22 -0
- package/fixtures/atelier-extension-pack/invalid/escapes-root.v1.json +22 -0
- package/fixtures/atelier-extension-pack/invalid/posture-tampered.v1.json +22 -0
- package/fixtures/atelier-extension-pack/invalid/protocols/autonomous-authority.v1.json +118 -0
- package/fixtures/atelier-extension-pack/invalid/protocols/offer-map.v1.json +109 -0
- package/fixtures/atelier-extension-pack/invalid/redefines-runtime-term.v1.json +19 -0
- package/fixtures/atelier-extension-pack/invalid/wrong-namespace.v1.json +19 -0
- package/fixtures/atelier-extension-pack/valid/protocols/contract-gate.v1.json +109 -0
- package/fixtures/atelier-extension-pack/valid/sample-pack.v1.json +48 -0
- package/fixtures/atelier-kit-manifest/invalid/runtime-copy-without-canonical-role.v1.json +53 -0
- package/fixtures/atelier-kit-manifest/invalid/telemetry-send-path.v1.json +21 -0
- package/fixtures/atelier-kit-manifest/valid/mnstry-atelier.valid.v1.json +76 -0
- package/fixtures/atelier-lock/invalid/absolute-contract-path.v1.json +40 -0
- package/fixtures/atelier-lock/invalid/runtime-mutation-enabled.v1.json +41 -0
- package/fixtures/atelier-lock/invalid/unknown-top-level-field.v1.json +42 -0
- package/fixtures/atelier-lock/valid/extension-pack.v1.json +55 -0
- package/fixtures/atelier-lock/valid/minimal.v1.json +44 -0
- package/fixtures/atelier-migration/invalid/live-apply-mode.v1.json +21 -0
- package/fixtures/atelier-migration/invalid/missing-review-evidence.v1.json +20 -0
- package/fixtures/atelier-migration/invalid/runtime-mutation-enabled.v1.json +21 -0
- package/fixtures/atelier-migration/valid/minimal.v1.json +32 -0
- package/fixtures/atelier-project-config/invalid/absolute-repo-path.v1.json +11 -0
- package/fixtures/atelier-project-config/invalid/ext-not-object.v1.json +12 -0
- package/fixtures/atelier-project-config/invalid/external-kind-read-boundary.v1.json +12 -0
- package/fixtures/atelier-project-config/invalid/missing-repos-and-alignment.v1.json +7 -0
- package/fixtures/atelier-project-config/invalid/unknown-top-level-field.v1.json +14 -0
- package/fixtures/atelier-project-config/valid/alignment-scaffold.v1.json +15 -0
- package/fixtures/atelier-project-config/valid/ext-extension-packs.v1.json +36 -0
- package/fixtures/atelier-project-config/valid/repo-workspace.v1.json +23 -0
- package/fixtures/atelier-project-config/validator-only/ext-member-not-object.v1.json +14 -0
- package/fixtures/atelier-readiness/invalid/dry-run-only-false.v1.json +87 -0
- package/fixtures/atelier-readiness/invalid/support-bundle-send-path.v1.json +87 -0
- package/fixtures/atelier-readiness/invalid/unknown-top-level-field.v1.json +88 -0
- package/fixtures/atelier-readiness/valid/ready-workspace.v1.json +84 -0
- package/fixtures/boundary-policy/invalid/content-rule-exception-blanket-path.v1.json +67 -0
- package/fixtures/boundary-policy/invalid/invalid-actor-private-repo-mapping.v1.json +20 -0
- package/fixtures/boundary-policy/invalid/legacy-warning-missing-warning.v1.json +20 -0
- package/fixtures/boundary-policy/invalid/missing-repo-coverage.v1.json +19 -0
- package/fixtures/boundary-policy/invalid/unknown-key.v1.json +12 -0
- package/fixtures/boundary-policy/valid/content-rule-exception.v1.json +67 -0
- package/fixtures/boundary-policy/valid/legacy-warning.v1.json +33 -0
- package/fixtures/boundary-policy/valid/strict-private-shared.v1.json +40 -0
- package/fixtures/git-promote/invalid/provision-named-revocable.v1.json +29 -0
- package/fixtures/git-promote/private-to-team.v1.json +29 -0
- package/fixtures/knowledge-source-sidecar/invalid/legacy-visibility-field.v1.json +17 -0
- package/fixtures/knowledge-source-sidecar/invalid/missing-audience.v1.json +15 -0
- package/fixtures/knowledge-source-sidecar/invalid/unknown-relation-kind.v1.json +18 -0
- package/fixtures/knowledge-source-sidecar/valid/html-source.v1.json +18 -0
- package/fixtures/knowledge-source-sidecar/valid/pdf-evidence.v1.json +18 -0
- package/fixtures/projects/neutral-project/atelier.project.json +15 -0
- package/fixtures/projects/neutral-project/ops/config/repo-access.v1.json +12 -0
- package/fixtures/projects/neutral-project/project-knowledge.graph.json +69 -0
- package/fixtures/projects/sample-workspace/atelier.project.json +23 -0
- package/fixtures/projects/sample-workspace/boundary-policy.v1.json +59 -0
- package/fixtures/projects/sample-workspace/content/README.md +16 -0
- package/fixtures/projects/sample-workspace/content/source.html +5 -0
- package/fixtures/projects/sample-workspace/content/source.html.kg.json +15 -0
- package/fixtures/projects/sample-workspace/repo-access.v1.json +9 -0
- package/fixtures/projects/source-formats-workspace/atelier.project.json +23 -0
- package/fixtures/projects/source-formats-workspace/content/README.md +17 -0
- package/fixtures/projects/source-formats-workspace/content/data.json +7 -0
- package/fixtures/projects/source-formats-workspace/content/data.json.kg.json +15 -0
- package/fixtures/projects/source-formats-workspace/content/logo.png.kg.json +15 -0
- package/fixtures/projects/source-formats-workspace/content/metrics.csv +3 -0
- package/fixtures/projects/source-formats-workspace/content/metrics.csv.kg.json +15 -0
- package/fixtures/projects/source-formats-workspace/content/pipeline.yaml +4 -0
- package/fixtures/projects/source-formats-workspace/content/pipeline.yaml.kg.json +15 -0
- package/fixtures/projects/source-formats-workspace/repo-access.v1.json +9 -0
- package/fixtures/readiness-protocols/extension-pack/invalid/protocol-missing-path.v1.json +20 -0
- package/fixtures/readiness-protocols/extension-pack/valid/with-protocol.v1.json +24 -0
- package/fixtures/readiness-protocols/protocol/invalid/missing-check-target.v1.json +103 -0
- package/fixtures/readiness-protocols/protocol/invalid/runtime-mutation-enabled.v1.json +107 -0
- package/fixtures/readiness-protocols/protocol/valid/minimal.v1.json +100 -0
- package/fixtures/readiness-protocols/run/invalid/missing-evidence.v1.json +37 -0
- package/fixtures/readiness-protocols/run/invalid/pass-with-blocker.v1.json +22 -0
- package/fixtures/readiness-protocols/run/invalid/runtime-mutation-enabled.v1.json +22 -0
- package/fixtures/readiness-protocols/run/valid/pass.v1.json +44 -0
- package/fixtures/support/invalid/leaky-support.v1.json +13 -0
- package/fixtures/support/valid/minimal-safe.v1.json +20 -0
- package/package.json +98 -0
- package/skills/claude/atelier-open/SKILL.md +68 -0
- package/skills/claude/mnstry-readiness/SKILL.md +41 -0
- package/skills/codex/atelier-open/SKILL.md +68 -0
- package/skills/codex/mnstry-readiness/SKILL.md +41 -0
- package/src/analysis/adapter.mjs +20 -0
- package/src/analysis/analysis-claim-contract.mjs +335 -0
- package/src/attestation/jcs.mjs +64 -0
- package/src/attestation/sign.mjs +305 -0
- package/src/boundary/content-rules.mjs +262 -0
- package/src/boundary/policy.mjs +806 -0
- package/src/check-atelier-export-contract.mjs +116 -0
- package/src/cli/run.mjs +283 -0
- package/src/collaboration/proposals.mjs +262 -0
- package/src/commands/analysis.mjs +8 -0
- package/src/commands/announcements.mjs +308 -0
- package/src/commands/attestation.mjs +198 -0
- package/src/commands/boundary.mjs +25 -0
- package/src/commands/config.mjs +4 -0
- package/src/commands/context.mjs +3 -0
- package/src/commands/distribution.mjs +224 -0
- package/src/commands/egress.mjs +11 -0
- package/src/commands/extension-pack.mjs +209 -0
- package/src/commands/feedback.mjs +3 -0
- package/src/commands/graph.mjs +3 -0
- package/src/commands/init.mjs +130 -0
- package/src/commands/lock.mjs +3 -0
- package/src/commands/project.mjs +3 -0
- package/src/commands/promote.mjs +4 -0
- package/src/commands/readiness.mjs +3 -0
- package/src/commands/server.mjs +6 -0
- package/src/commands/setup.mjs +250 -0
- package/src/commands/support.mjs +3 -0
- package/src/commands/upgrade.mjs +3 -0
- package/src/contracts/corpus.mjs +171 -0
- package/src/egress/check.mjs +45 -0
- package/src/egress/forbidden-egress.mjs +323 -0
- package/src/export/atelier-export-contract.mjs +722 -0
- package/src/extension-packs/loader.mjs +491 -0
- package/src/graph/graph.mjs +370 -0
- package/src/graph/knowledge-graph.mjs +887 -0
- package/src/harness/context-client.mjs +144 -0
- package/src/harness/context.mjs +27 -0
- package/src/index.mjs +88 -0
- package/src/project/config.mjs +557 -0
- package/src/project/file-class.mjs +113 -0
- package/src/project/git-ignore.mjs +31 -0
- package/src/project/path-match.mjs +30 -0
- package/src/project/repo-identity.mjs +176 -0
- package/src/projection/alignment-projection.mjs +169 -0
- package/src/projection/policy.mjs +90 -0
- package/src/projection/project.mjs +152 -0
- package/src/readiness/readiness.mjs +312 -0
- package/src/readiness-protocols/bundled-pack.mjs +766 -0
- package/src/readiness-protocols/runtime.mjs +419 -0
- package/src/server/local-sidecar.mjs +640 -0
- package/src/server/security.mjs +229 -0
- package/src/server/server.mjs +42 -0
- package/src/support/feedback-report.mjs +414 -0
- package/src/support/support-bundle.mjs +226 -0
- package/src/ui/html-primitives.mjs +104 -0
- package/src/upgrade/upgrade.mjs +701 -0
- package/src/validate-atelier-export-dry-run.mjs +75 -0
- package/templates/atelier.project.example.json +23 -0
- package/templates/distribution-workspace/.claude/launch.json +12 -0
- package/templates/distribution-workspace/README.md +86 -0
- package/templates/distribution-workspace/atelier.project.json +36 -0
- package/templates/distribution-workspace/boundary-policy.v1.json +61 -0
- package/templates/distribution-workspace/gitignore +29 -0
- package/templates/distribution-workspace/governance/repo-boundary-ledger.md +5 -0
- package/templates/distribution-workspace/project/README.md +19 -0
- package/templates/distribution-workspace/repo-access.v1.json +9 -0
- package/templates/launch.json +12 -0
- package/templates/private-domain-workspace/.claude/launch.json +12 -0
- package/templates/private-domain-workspace/README.md +50 -0
- package/templates/private-domain-workspace/atelier.project.json +28 -0
- package/templates/private-domain-workspace/boundary-policy.v1.json +54 -0
- package/templates/private-domain-workspace/domain/README.md +19 -0
- package/templates/private-domain-workspace/gitignore +29 -0
- package/templates/private-domain-workspace/governance/repo-boundary-ledger.md +4 -0
- package/templates/private-domain-workspace/repo-access.v1.json +9 -0
- package/templates/shared-project-workspace/.claude/launch.json +12 -0
- package/templates/shared-project-workspace/README.md +51 -0
- package/templates/shared-project-workspace/atelier.project.json +28 -0
- package/templates/shared-project-workspace/boundary-policy.v1.json +61 -0
- package/templates/shared-project-workspace/gitignore +29 -0
- package/templates/shared-project-workspace/governance/repo-boundary-ledger.md +5 -0
- package/templates/shared-project-workspace/project/README.md +19 -0
- package/templates/shared-project-workspace/repo-access.v1.json +9 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.atelier-boundary-policy@v1",
|
|
3
|
+
"mode": "strict",
|
|
4
|
+
"actors": {
|
|
5
|
+
"automation": {
|
|
6
|
+
"githubLogin": "atelier-bot",
|
|
7
|
+
"privateDomainRepo": 123
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
"repos": {
|
|
11
|
+
"mnstry-private-author": {
|
|
12
|
+
"kind": "private_domain",
|
|
13
|
+
"ownerActor": "automation",
|
|
14
|
+
"readBoundary": "private",
|
|
15
|
+
"allowedAudiences": ["private"],
|
|
16
|
+
"forbiddenAudiences": [],
|
|
17
|
+
"autoCommit": "guarded"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.atelier-boundary-policy@v1",
|
|
3
|
+
"mode": "legacy-warning",
|
|
4
|
+
"actors": {
|
|
5
|
+
"project-owner": {
|
|
6
|
+
"githubLogin": "project-owner",
|
|
7
|
+
"privateDomainRepo": "client-private"
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
"repos": {
|
|
11
|
+
"client-private": {
|
|
12
|
+
"kind": "private_domain",
|
|
13
|
+
"ownerActor": "project-owner",
|
|
14
|
+
"readBoundary": "private",
|
|
15
|
+
"allowedAudiences": ["not-real"],
|
|
16
|
+
"forbiddenAudiences": [],
|
|
17
|
+
"autoCommit": "guarded"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.atelier-boundary-policy@v1",
|
|
3
|
+
"mode": "strict",
|
|
4
|
+
"actors": {
|
|
5
|
+
"owner": {
|
|
6
|
+
"githubLogin": "USER_GITHUB_LOGIN_PLACEHOLDER",
|
|
7
|
+
"privateDomainRepo": "tenant-private-domain"
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
"repos": {
|
|
11
|
+
"tenant-private-domain": {
|
|
12
|
+
"kind": "private_domain",
|
|
13
|
+
"ownerActor": "owner",
|
|
14
|
+
"readBoundary": "private",
|
|
15
|
+
"allowedAudiences": ["private"],
|
|
16
|
+
"forbiddenAudiences": []
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.atelier-boundary-policy@v1",
|
|
3
|
+
"mode": "strict",
|
|
4
|
+
"actors": {
|
|
5
|
+
"owner": {
|
|
6
|
+
"githubLogin": "USER_GITHUB_LOGIN_PLACEHOLDER",
|
|
7
|
+
"gitEmails": [
|
|
8
|
+
"owner@example.invalid"
|
|
9
|
+
],
|
|
10
|
+
"privateDomainRepo": "tenant-private-domain"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"repos": {
|
|
14
|
+
"tenant-private-domain": {
|
|
15
|
+
"kind": "private_domain",
|
|
16
|
+
"ownerActor": "owner",
|
|
17
|
+
"readBoundary": "private",
|
|
18
|
+
"allowedAudiences": [
|
|
19
|
+
"private",
|
|
20
|
+
"sensitive",
|
|
21
|
+
"team",
|
|
22
|
+
"operator",
|
|
23
|
+
"staff",
|
|
24
|
+
"public"
|
|
25
|
+
],
|
|
26
|
+
"forbiddenAudiences": [],
|
|
27
|
+
"autoCommit": "guarded"
|
|
28
|
+
},
|
|
29
|
+
"project-example": {
|
|
30
|
+
"kind": "shared",
|
|
31
|
+
"readBoundary": "team",
|
|
32
|
+
"allowedAudiences": [
|
|
33
|
+
"team",
|
|
34
|
+
"operator",
|
|
35
|
+
"staff",
|
|
36
|
+
"public"
|
|
37
|
+
],
|
|
38
|
+
"forbiddenAudiences": [
|
|
39
|
+
"private",
|
|
40
|
+
"sensitive"
|
|
41
|
+
],
|
|
42
|
+
"autoCommit": "guarded"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"promotion": {
|
|
46
|
+
"requiresGitPromote": true,
|
|
47
|
+
"recordsPath": "governance/git-promote-events.jsonl"
|
|
48
|
+
},
|
|
49
|
+
"forbiddenPaths": [
|
|
50
|
+
".mnstry-local/**",
|
|
51
|
+
".atelier-proposals/**",
|
|
52
|
+
"support-bundles/**",
|
|
53
|
+
"prompts/**",
|
|
54
|
+
"transcripts/**"
|
|
55
|
+
],
|
|
56
|
+
"governanceLedgerPath": "governance/repo-boundary-ledger.md",
|
|
57
|
+
"contentRuleExceptions": [
|
|
58
|
+
{
|
|
59
|
+
"rule": "browser-persistence",
|
|
60
|
+
"repo": "project-example",
|
|
61
|
+
"paths": [
|
|
62
|
+
"src/scripts/cart.ts"
|
|
63
|
+
],
|
|
64
|
+
"reason": "owner-authorized mock cart on a public demo site; localStorage is its whole design"
|
|
65
|
+
}
|
|
66
|
+
]
|
|
67
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.atelier-boundary-policy@v1",
|
|
3
|
+
"mode": "legacy-warning",
|
|
4
|
+
"actors": {
|
|
5
|
+
"project-owner": {
|
|
6
|
+
"githubLogin": "project-owner",
|
|
7
|
+
"gitEmails": ["owner@example.invalid"],
|
|
8
|
+
"privateDomainRepo": "client-private"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"repos": {
|
|
12
|
+
"client-private": {
|
|
13
|
+
"kind": "private_domain",
|
|
14
|
+
"ownerActor": "project-owner",
|
|
15
|
+
"readBoundary": "private",
|
|
16
|
+
"allowedAudiences": ["private", "sensitive", "team", "operator", "staff", "public"],
|
|
17
|
+
"forbiddenAudiences": [],
|
|
18
|
+
"autoCommit": "guarded"
|
|
19
|
+
},
|
|
20
|
+
"client-shared": {
|
|
21
|
+
"kind": "shared",
|
|
22
|
+
"readBoundary": "team",
|
|
23
|
+
"allowedAudiences": ["team", "operator", "staff", "public"],
|
|
24
|
+
"forbiddenAudiences": ["private", "sensitive"],
|
|
25
|
+
"autoCommit": "guarded"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"promotion": {
|
|
29
|
+
"requiresGitPromote": true,
|
|
30
|
+
"recordsPath": "governance/git-promote-events.jsonl"
|
|
31
|
+
},
|
|
32
|
+
"forbiddenPaths": [".mnstry-local/**", "support-bundles/**"]
|
|
33
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.atelier-boundary-policy@v1",
|
|
3
|
+
"mode": "strict",
|
|
4
|
+
"actors": {
|
|
5
|
+
"owner": {
|
|
6
|
+
"githubLogin": "USER_GITHUB_LOGIN_PLACEHOLDER",
|
|
7
|
+
"gitEmails": ["owner@example.invalid"],
|
|
8
|
+
"privateDomainRepo": "tenant-private-domain"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"repos": {
|
|
12
|
+
"tenant-private-domain": {
|
|
13
|
+
"kind": "private_domain",
|
|
14
|
+
"ownerActor": "owner",
|
|
15
|
+
"readBoundary": "private",
|
|
16
|
+
"allowedAudiences": ["private", "sensitive", "team", "operator", "staff", "public"],
|
|
17
|
+
"forbiddenAudiences": [],
|
|
18
|
+
"autoCommit": "guarded"
|
|
19
|
+
},
|
|
20
|
+
"project-example": {
|
|
21
|
+
"kind": "shared",
|
|
22
|
+
"readBoundary": "team",
|
|
23
|
+
"allowedAudiences": ["team", "operator", "staff", "public"],
|
|
24
|
+
"forbiddenAudiences": ["private", "sensitive"],
|
|
25
|
+
"autoCommit": "guarded"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"promotion": {
|
|
29
|
+
"requiresGitPromote": true,
|
|
30
|
+
"recordsPath": "governance/git-promote-events.jsonl"
|
|
31
|
+
},
|
|
32
|
+
"forbiddenPaths": [
|
|
33
|
+
".mnstry-local/**",
|
|
34
|
+
".atelier-proposals/**",
|
|
35
|
+
"support-bundles/**",
|
|
36
|
+
"prompts/**",
|
|
37
|
+
"transcripts/**"
|
|
38
|
+
],
|
|
39
|
+
"governanceLedgerPath": "governance/repo-boundary-ledger.md"
|
|
40
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "git-promote-event@v1",
|
|
3
|
+
"source": {
|
|
4
|
+
"repo": "atelier-private-fixture",
|
|
5
|
+
"repoAccess": "private",
|
|
6
|
+
"kgId": "atelier-private-fixture:offer-draft",
|
|
7
|
+
"audience": "private",
|
|
8
|
+
"commit": "1111111111111111111111111111111111111111"
|
|
9
|
+
},
|
|
10
|
+
"target": {
|
|
11
|
+
"repo": "atelier-team-fixture",
|
|
12
|
+
"repoAccess": "team",
|
|
13
|
+
"kgId": "atelier-team-fixture:offer-draft",
|
|
14
|
+
"audience": "team",
|
|
15
|
+
"commit": "2222222222222222222222222222222222222222"
|
|
16
|
+
},
|
|
17
|
+
"event": {
|
|
18
|
+
"type": "space.provision",
|
|
19
|
+
"actor": "github:mnstry",
|
|
20
|
+
"sourceRepo": "atelier-private-fixture",
|
|
21
|
+
"targetRepo": "atelier-team-fixture",
|
|
22
|
+
"sourceKgId": "atelier-private-fixture:offer-draft",
|
|
23
|
+
"targetKgId": "atelier-team-fixture:offer-draft",
|
|
24
|
+
"sourceCommit": "1111111111111111111111111111111111111111",
|
|
25
|
+
"targetCommit": "2222222222222222222222222222222222222222",
|
|
26
|
+
"disclosure_class": "runtime",
|
|
27
|
+
"revocable": true
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "git-promote-event@v1",
|
|
3
|
+
"source": {
|
|
4
|
+
"repo": "atelier-private-fixture",
|
|
5
|
+
"repoAccess": "private",
|
|
6
|
+
"kgId": "atelier-private-fixture:offer-draft",
|
|
7
|
+
"audience": "private",
|
|
8
|
+
"commit": "1111111111111111111111111111111111111111"
|
|
9
|
+
},
|
|
10
|
+
"target": {
|
|
11
|
+
"repo": "atelier-team-fixture",
|
|
12
|
+
"repoAccess": "team",
|
|
13
|
+
"kgId": "atelier-team-fixture:offer-draft",
|
|
14
|
+
"audience": "team",
|
|
15
|
+
"commit": "2222222222222222222222222222222222222222"
|
|
16
|
+
},
|
|
17
|
+
"event": {
|
|
18
|
+
"type": "git.promote",
|
|
19
|
+
"actor": "github:mnstry",
|
|
20
|
+
"sourceRepo": "atelier-private-fixture",
|
|
21
|
+
"targetRepo": "atelier-team-fixture",
|
|
22
|
+
"sourceKgId": "atelier-private-fixture:offer-draft",
|
|
23
|
+
"targetKgId": "atelier-team-fixture:offer-draft",
|
|
24
|
+
"sourceCommit": "1111111111111111111111111111111111111111",
|
|
25
|
+
"targetCommit": "2222222222222222222222222222222222222222",
|
|
26
|
+
"disclosure_class": "durable",
|
|
27
|
+
"revocable": false
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.source-sidecar@v1",
|
|
3
|
+
"asset": "source.html",
|
|
4
|
+
"title": "Sample source",
|
|
5
|
+
"summary": "Sidecar illegally carrying the runtime-reserved visibility word.",
|
|
6
|
+
"tags": ["sample"],
|
|
7
|
+
"kg": {
|
|
8
|
+
"id": "sample-workspace:source-html",
|
|
9
|
+
"type": "html",
|
|
10
|
+
"domain": "architecture",
|
|
11
|
+
"lifecycle": "current",
|
|
12
|
+
"status": "active",
|
|
13
|
+
"audience": "team",
|
|
14
|
+
"visibility": "public",
|
|
15
|
+
"relations": {}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.source-sidecar@v1",
|
|
3
|
+
"asset": "source.html",
|
|
4
|
+
"title": "Sample source",
|
|
5
|
+
"summary": "Sidecar missing the mandatory audience classification.",
|
|
6
|
+
"tags": ["sample"],
|
|
7
|
+
"kg": {
|
|
8
|
+
"id": "sample-workspace:source-html",
|
|
9
|
+
"type": "html",
|
|
10
|
+
"domain": "architecture",
|
|
11
|
+
"lifecycle": "current",
|
|
12
|
+
"status": "active",
|
|
13
|
+
"relations": {}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.source-sidecar@v1",
|
|
3
|
+
"asset": "source.html",
|
|
4
|
+
"title": "Sample source",
|
|
5
|
+
"summary": "Sidecar declaring a relation kind outside the shared vocabulary.",
|
|
6
|
+
"tags": ["sample"],
|
|
7
|
+
"kg": {
|
|
8
|
+
"id": "sample-workspace:source-html",
|
|
9
|
+
"type": "html",
|
|
10
|
+
"domain": "architecture",
|
|
11
|
+
"lifecycle": "current",
|
|
12
|
+
"status": "active",
|
|
13
|
+
"audience": "team",
|
|
14
|
+
"relations": {
|
|
15
|
+
"blocks": ["sample-workspace:readme"]
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.source-sidecar@v1",
|
|
3
|
+
"asset": "source.html",
|
|
4
|
+
"title": "Sample source",
|
|
5
|
+
"summary": "Neutral non-Markdown source with a durable sidecar identity.",
|
|
6
|
+
"tags": ["sample", "architecture"],
|
|
7
|
+
"kg": {
|
|
8
|
+
"id": "sample-workspace:source-html",
|
|
9
|
+
"type": "html",
|
|
10
|
+
"domain": "architecture",
|
|
11
|
+
"lifecycle": "current",
|
|
12
|
+
"status": "active",
|
|
13
|
+
"audience": "team",
|
|
14
|
+
"relations": {
|
|
15
|
+
"related": ["sample-workspace:readme"]
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.source-sidecar@v1",
|
|
3
|
+
"asset": "capacity-report.pdf",
|
|
4
|
+
"title": "Capacity report",
|
|
5
|
+
"summary": "Evidence artifact backing the readiness summary.",
|
|
6
|
+
"tags": ["evidence"],
|
|
7
|
+
"kg": {
|
|
8
|
+
"id": "sample-workspace:capacity-report",
|
|
9
|
+
"type": "pdf",
|
|
10
|
+
"domain": "operations",
|
|
11
|
+
"lifecycle": "current",
|
|
12
|
+
"status": "active",
|
|
13
|
+
"audience": "private",
|
|
14
|
+
"relations": {
|
|
15
|
+
"evidences": ["sample-workspace:runtime-readiness-summary"]
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.atelier-project-config@v1",
|
|
3
|
+
"roots": {
|
|
4
|
+
"workspace": ".",
|
|
5
|
+
"repoOps": "ops"
|
|
6
|
+
},
|
|
7
|
+
"graph": {
|
|
8
|
+
"repoAccessPath": "config/repo-access.v1.json",
|
|
9
|
+
"workspaceGraphPath": "../project-knowledge.graph.json"
|
|
10
|
+
},
|
|
11
|
+
"alignment": {
|
|
12
|
+
"appRepo": "project-app",
|
|
13
|
+
"root": "APP/mnstry-alignment"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.knowledge-graph@v1",
|
|
3
|
+
"workspace": "neutral-project",
|
|
4
|
+
"diagnostics": [],
|
|
5
|
+
"nodes": [
|
|
6
|
+
{
|
|
7
|
+
"id": "project-app:alignment-overview",
|
|
8
|
+
"title": "Alignment Overview",
|
|
9
|
+
"summary": "Maps the project alignment surface.",
|
|
10
|
+
"repo": "project-app",
|
|
11
|
+
"path": "APP/mnstry-alignment/overview.md",
|
|
12
|
+
"extension": "md",
|
|
13
|
+
"type": "markdown",
|
|
14
|
+
"kgType": "document",
|
|
15
|
+
"domain": "app",
|
|
16
|
+
"lifecycle": "app",
|
|
17
|
+
"status": "active",
|
|
18
|
+
"audience": "team",
|
|
19
|
+
"repoAccess": {
|
|
20
|
+
"readBoundary": "team"
|
|
21
|
+
},
|
|
22
|
+
"surfaced": true,
|
|
23
|
+
"atelier": {
|
|
24
|
+
"section": "alignment",
|
|
25
|
+
"status": null,
|
|
26
|
+
"kind": null
|
|
27
|
+
},
|
|
28
|
+
"tags": ["mnstry-alignment"],
|
|
29
|
+
"relations": {
|
|
30
|
+
"supports": ["project-app:public-guide"]
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"id": "project-app:public-guide",
|
|
35
|
+
"title": "Public Guide",
|
|
36
|
+
"summary": "A public guide.",
|
|
37
|
+
"repo": "project-app",
|
|
38
|
+
"path": "docs/public-guide.md",
|
|
39
|
+
"extension": "md",
|
|
40
|
+
"type": "markdown",
|
|
41
|
+
"kgType": "document",
|
|
42
|
+
"domain": "docs",
|
|
43
|
+
"lifecycle": "docs",
|
|
44
|
+
"status": "active",
|
|
45
|
+
"audience": "public",
|
|
46
|
+
"repoAccess": {
|
|
47
|
+
"readBoundary": "team"
|
|
48
|
+
},
|
|
49
|
+
"surfaced": true,
|
|
50
|
+
"atelier": {
|
|
51
|
+
"section": "docs",
|
|
52
|
+
"status": null,
|
|
53
|
+
"kind": null
|
|
54
|
+
},
|
|
55
|
+
"tags": ["guide"],
|
|
56
|
+
"relations": {}
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"edges": [
|
|
60
|
+
{
|
|
61
|
+
"source": "project-app:alignment-overview",
|
|
62
|
+
"target": "project-app:public-guide",
|
|
63
|
+
"type": "supports",
|
|
64
|
+
"declared": true
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"nodeCount": 2,
|
|
68
|
+
"edgeCount": 1
|
|
69
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.atelier-project-config@v1",
|
|
3
|
+
"name": "sample-workspace",
|
|
4
|
+
"roots": {
|
|
5
|
+
"workspace": ".",
|
|
6
|
+
"repoOps": "."
|
|
7
|
+
},
|
|
8
|
+
"graph": {
|
|
9
|
+
"repoAccessPath": "repo-access.v1.json",
|
|
10
|
+
"outputPath": "atelier-output/knowledge.graph.json"
|
|
11
|
+
},
|
|
12
|
+
"projection": {
|
|
13
|
+
"outputRoot": "atelier-output",
|
|
14
|
+
"readinessPath": "atelier-output/atelier-readiness.json"
|
|
15
|
+
},
|
|
16
|
+
"repos": [
|
|
17
|
+
{
|
|
18
|
+
"name": "content",
|
|
19
|
+
"path": "content",
|
|
20
|
+
"readBoundary": "private"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.atelier-boundary-policy@v1",
|
|
3
|
+
"mode": "strict",
|
|
4
|
+
"actors": {
|
|
5
|
+
"owner": {
|
|
6
|
+
"githubLogin": "sample-owner",
|
|
7
|
+
"gitEmails": ["owner@example.invalid"],
|
|
8
|
+
"privateDomainRepo": "content"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"repos": {
|
|
12
|
+
"content": {
|
|
13
|
+
"kind": "private_domain",
|
|
14
|
+
"ownerActor": "owner",
|
|
15
|
+
"readBoundary": "private",
|
|
16
|
+
"allowedAudiences": [
|
|
17
|
+
"private",
|
|
18
|
+
"sensitive",
|
|
19
|
+
"team",
|
|
20
|
+
"operator",
|
|
21
|
+
"staff",
|
|
22
|
+
"public"
|
|
23
|
+
],
|
|
24
|
+
"forbiddenAudiences": [],
|
|
25
|
+
"autoCommit": "guarded"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"promotion": {
|
|
29
|
+
"requiresGitPromote": true,
|
|
30
|
+
"recordsPath": "governance/git-promote-events.jsonl"
|
|
31
|
+
},
|
|
32
|
+
"forbiddenPaths": [
|
|
33
|
+
".atelier-local/**",
|
|
34
|
+
"atelier.local.json",
|
|
35
|
+
"atelier.workspace.local.json",
|
|
36
|
+
".mnstry-local/**",
|
|
37
|
+
".atelier-proposals/**",
|
|
38
|
+
".atelier-current",
|
|
39
|
+
".atelier-current.json",
|
|
40
|
+
".atelier-presence.json",
|
|
41
|
+
".atelier-nonce",
|
|
42
|
+
".atelier-capability-grants.json",
|
|
43
|
+
".atelier-grants/**",
|
|
44
|
+
".atelier-events.jsonl",
|
|
45
|
+
".atelier-audit.jsonl",
|
|
46
|
+
".atelier-audit/**",
|
|
47
|
+
".atelier-session.json",
|
|
48
|
+
".atelier-session.jsonl",
|
|
49
|
+
".atelier-session/**",
|
|
50
|
+
".atelier-sessions/**",
|
|
51
|
+
".atelier-support/**",
|
|
52
|
+
".atelier-support.json",
|
|
53
|
+
"support-bundle*",
|
|
54
|
+
"support-bundles/**",
|
|
55
|
+
"node_modules/**",
|
|
56
|
+
".DS_Store"
|
|
57
|
+
],
|
|
58
|
+
"governanceLedgerPath": "governance/repo-boundary-ledger.md"
|
|
59
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Sample Workspace"
|
|
3
|
+
summary: "Neutral sample source for proving a non-adapter Atelier project."
|
|
4
|
+
tags: []
|
|
5
|
+
kg:
|
|
6
|
+
id: "sample-workspace:readme"
|
|
7
|
+
type: "document"
|
|
8
|
+
status: "active"
|
|
9
|
+
audience: "private"
|
|
10
|
+
relations:
|
|
11
|
+
supports: "sample-workspace:source-html"
|
|
12
|
+
---
|
|
13
|
+
# Sample Workspace
|
|
14
|
+
|
|
15
|
+
This fictional source document proves the package graph can build without any
|
|
16
|
+
client-zero repository names or brand language.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"assetFilename": "source.html",
|
|
3
|
+
"title": "Sample Source",
|
|
4
|
+
"summary": "Neutral non-Markdown source with durable sidecar identity.",
|
|
5
|
+
"tags": [
|
|
6
|
+
"sample"
|
|
7
|
+
],
|
|
8
|
+
"kg": {
|
|
9
|
+
"id": "sample-workspace:source-html",
|
|
10
|
+
"type": "source",
|
|
11
|
+
"status": "active",
|
|
12
|
+
"audience": "private",
|
|
13
|
+
"relations": {}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "mnstry.atelier-project-config@v1",
|
|
3
|
+
"name": "source-formats-workspace",
|
|
4
|
+
"roots": {
|
|
5
|
+
"workspace": ".",
|
|
6
|
+
"repoOps": "."
|
|
7
|
+
},
|
|
8
|
+
"graph": {
|
|
9
|
+
"repoAccessPath": "repo-access.v1.json",
|
|
10
|
+
"outputPath": "atelier-output/knowledge.graph.json"
|
|
11
|
+
},
|
|
12
|
+
"projection": {
|
|
13
|
+
"outputRoot": "atelier-output",
|
|
14
|
+
"readinessPath": "atelier-output/atelier-readiness.json"
|
|
15
|
+
},
|
|
16
|
+
"repos": [
|
|
17
|
+
{
|
|
18
|
+
"name": "content",
|
|
19
|
+
"path": "content",
|
|
20
|
+
"readBoundary": "team"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Source formats workspace"
|
|
3
|
+
summary: "Neutral fixture proving sidecar-first census across foreign source formats."
|
|
4
|
+
tags: []
|
|
5
|
+
kg:
|
|
6
|
+
id: "source-formats:readme"
|
|
7
|
+
type: "document"
|
|
8
|
+
status: "active"
|
|
9
|
+
audience: "team"
|
|
10
|
+
relations:
|
|
11
|
+
supports: "source-formats:data-json"
|
|
12
|
+
---
|
|
13
|
+
# Source formats workspace
|
|
14
|
+
|
|
15
|
+
This fictional workspace proves that json, yaml, csv, and binary assets become
|
|
16
|
+
first-class knowledge-graph nodes through adjacent sidecars, without the graph
|
|
17
|
+
ever parsing the foreign formats themselves.
|