@jstn-sdk/ma 0.1.10 → 0.1.12

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 (133) hide show
  1. package/.agents/plugins/marketplace.json +0 -0
  2. package/README.md +136 -29
  3. package/bin/ma.js +23 -67
  4. package/docs/README.md +4 -1
  5. package/docs/assets/image/Screenshot(1).png +0 -0
  6. package/docs/assets/image/Screenshot(2).png +0 -0
  7. package/docs/assets/image/Screenshot(3).png +0 -0
  8. package/docs/assets/image/Screenshot(4).png +0 -0
  9. package/docs/assets/image/Screenshot(5).png +0 -0
  10. package/docs/assets/image/Screenshot(6).png +0 -0
  11. package/docs/assets/image/Screenshot(7).png +0 -0
  12. package/docs/assets/image/Screenshot(8).png +0 -0
  13. package/docs/assets/image/Screenshot(9).png +0 -0
  14. package/docs/assets/meta-architect-logo.png +0 -0
  15. package/docs/assets/meta-architect-logo.svg +0 -0
  16. package/docs/getting-started.md +74 -19
  17. package/docs/installed-sdk.md +23 -0
  18. package/docs/mcp-setup.md +30 -1
  19. package/docs/qa/{release-readiness-0.1.10.md → release-readiness-0.1.12.md} +29 -8
  20. package/docs/qa/release-readiness-0.1.5.md +0 -0
  21. package/docs/reference/native-engineering-patterns.md +35 -0
  22. package/docs/reference/native-security-playbooks.md +21 -0
  23. package/docs/reference/native-source-selection.md +21 -0
  24. package/docs/reference/native-style-and-deslop.md +20 -0
  25. package/docs/release-spec.md +21 -10
  26. package/docs/skills-publishing.md +25 -1
  27. package/docs/skills.md +24 -12
  28. package/mcp/local/code-intel.js +113 -0
  29. package/mcp/local/memory.js +46 -0
  30. package/mcp/local/playbooks.js +168 -0
  31. package/mcp/local/state.js +71 -0
  32. package/mcp/local/team-run.js +66 -0
  33. package/mcp/local/trace.js +60 -0
  34. package/mcp/local-capabilities.json +56 -0
  35. package/mcp/native-playbooks.json +117 -0
  36. package/mcp/servers.json +10 -0
  37. package/package.json +4 -1
  38. package/plugins/meta-architect/.app.json +1 -1
  39. package/plugins/meta-architect/.codex-plugin/plugin.json +4 -4
  40. package/plugins/meta-architect/.mcp.json +1 -1
  41. package/plugins/meta-architect/README.md +27 -1
  42. package/plugins/meta-architect/skills/align/SKILL.md +24 -0
  43. package/plugins/meta-architect/skills/align/agents/openai.yaml +4 -0
  44. package/plugins/meta-architect/skills/align/references/shared-language.md +24 -0
  45. package/plugins/meta-architect/skills/arch/SKILL.md +0 -0
  46. package/plugins/meta-architect/skills/arch/agents/openai.yaml +0 -0
  47. package/plugins/meta-architect/skills/build/SKILL.md +0 -0
  48. package/plugins/meta-architect/skills/build/agents/openai.yaml +0 -0
  49. package/plugins/meta-architect/skills/cleanup/SKILL.md +23 -0
  50. package/plugins/meta-architect/skills/cleanup/agents/openai.yaml +4 -0
  51. package/plugins/meta-architect/skills/cleanup/references/style-and-deslop.md +18 -0
  52. package/plugins/meta-architect/skills/diagnose/SKILL.md +24 -0
  53. package/plugins/meta-architect/skills/diagnose/agents/openai.yaml +4 -0
  54. package/plugins/meta-architect/skills/flow/SKILL.md +0 -0
  55. package/plugins/meta-architect/skills/flow/agents/openai.yaml +0 -0
  56. package/plugins/meta-architect/skills/maestro/SKILL.md +36 -3
  57. package/plugins/meta-architect/skills/maestro/agents/openai.yaml +2 -2
  58. package/plugins/meta-architect/skills/{meta-architect → maestro}/references/core-release-rules.md +0 -0
  59. package/plugins/meta-architect/skills/maestro/references/native-ingest-map.md +44 -0
  60. package/plugins/meta-architect/skills/sage/SKILL.md +3 -1
  61. package/plugins/meta-architect/skills/sage/agents/openai.yaml +0 -0
  62. package/plugins/meta-architect/skills/sage/references/source-selection.md +28 -0
  63. package/plugins/meta-architect/skills/tdd/SKILL.md +24 -0
  64. package/plugins/meta-architect/skills/tdd/agents/openai.yaml +4 -0
  65. package/plugins/meta-architect/skills/vet/SKILL.md +3 -1
  66. package/plugins/meta-architect/skills/vet/agents/openai.yaml +0 -0
  67. package/plugins/meta-architect/skills/vet/references/security-playbooks.md +23 -0
  68. package/plugins/meta-architect/skills/vibe/SKILL.md +0 -0
  69. package/plugins/meta-architect/skills/vibe/agents/openai.yaml +0 -0
  70. package/scripts/biome-staged.js +0 -0
  71. package/scripts/build-linux-packages.mjs +328 -0
  72. package/scripts/doctor.js +19 -0
  73. package/scripts/linux-package-lib.mjs +40 -0
  74. package/scripts/linux-package-smoke.mjs +103 -0
  75. package/scripts/plugin-sync.js +0 -0
  76. package/scripts/postinstall.js +0 -0
  77. package/scripts/release-metadata.js +0 -0
  78. package/scripts/release-sync.js +13 -6
  79. package/scripts/release-verify.js +0 -0
  80. package/scripts/setup-npmrc.js +0 -0
  81. package/skills/align/SKILL.md +24 -0
  82. package/skills/align/agents/openai.yaml +4 -0
  83. package/skills/align/references/shared-language.md +24 -0
  84. package/skills/arch/SKILL.md +0 -0
  85. package/skills/arch/agents/openai.yaml +0 -0
  86. package/skills/build/SKILL.md +0 -0
  87. package/skills/build/agents/openai.yaml +0 -0
  88. package/skills/cleanup/SKILL.md +23 -0
  89. package/skills/cleanup/agents/openai.yaml +4 -0
  90. package/skills/cleanup/references/style-and-deslop.md +18 -0
  91. package/skills/diagnose/SKILL.md +24 -0
  92. package/skills/diagnose/agents/openai.yaml +4 -0
  93. package/skills/flow/SKILL.md +0 -0
  94. package/skills/flow/agents/openai.yaml +0 -0
  95. package/skills/index.json +21 -6
  96. package/skills/maestro/SKILL.md +36 -3
  97. package/skills/maestro/agents/openai.yaml +2 -2
  98. package/skills/{meta-architect → maestro}/references/core-release-rules.md +0 -0
  99. package/skills/maestro/references/native-ingest-map.md +44 -0
  100. package/skills/sage/SKILL.md +3 -1
  101. package/skills/sage/agents/openai.yaml +0 -0
  102. package/skills/sage/references/source-selection.md +28 -0
  103. package/skills/tdd/SKILL.md +24 -0
  104. package/skills/tdd/agents/openai.yaml +4 -0
  105. package/skills/vet/SKILL.md +3 -1
  106. package/skills/vet/agents/openai.yaml +0 -0
  107. package/skills/vet/references/security-playbooks.md +23 -0
  108. package/skills/vibe/SKILL.md +0 -0
  109. package/skills/vibe/agents/openai.yaml +0 -0
  110. package/src/bootstrap.js +124 -24
  111. package/src/decision-log.js +12 -9
  112. package/src/launcher.js +0 -0
  113. package/src/mcp-config.js +130 -8
  114. package/src/mcp-live-client.js +1 -1
  115. package/src/paths.js +33 -1
  116. package/src/release-state.js +30 -1
  117. package/src/runtime/build-readiness.js +38 -0
  118. package/src/runtime/continuity-notes.js +79 -0
  119. package/src/runtime/guidance-stack.js +42 -0
  120. package/src/runtime/maestro-manager.js +586 -0
  121. package/src/runtime/orchestrator.js +158 -0
  122. package/src/runtime/runtime-state.js +382 -0
  123. package/src/runtime/signal-hooks.js +52 -0
  124. package/src/runtime/startup-path.js +14 -0
  125. package/src/runtime/workspaces.js +25 -0
  126. package/src/runtime-artifacts.js +190 -30
  127. package/src/skill-installer.js +53 -5
  128. package/src/skills.js +633 -49
  129. package/src/state-sync.js +51 -8
  130. package/plugins/meta-architect/skills/meta-architect/SKILL.md +0 -32
  131. package/plugins/meta-architect/skills/meta-architect/agents/openai.yaml +0 -4
  132. package/skills/meta-architect/SKILL.md +0 -32
  133. package/skills/meta-architect/agents/openai.yaml +0 -4
@@ -0,0 +1,117 @@
1
+ {
2
+ "schemaVersion": "0.1.0",
3
+ "packs": [
4
+ {
5
+ "id": "native-ingest-core",
6
+ "title": "Native Ingest Core",
7
+ "summary": "Read-only Meta-Architect playbook pack for support-bundle-aware runtime wiring and native packaging discipline.",
8
+ "readOnly": true,
9
+ "applicableSkills": ["maestro", "sage", "vet", "align", "diagnose", "tdd", "cleanup"],
10
+ "runtimeSurfaces": [
11
+ "mcp/native-playbooks.json",
12
+ "mcp/local/playbooks.js",
13
+ "mcp/local-capabilities.json",
14
+ "docs/installed-sdk.md",
15
+ "docs/mcp-setup.md"
16
+ ],
17
+ "patterns": [
18
+ {
19
+ "id": "single-umbrella-routing",
20
+ "title": "Keep maestro singular",
21
+ "guidance": "Route native helper families through maestro while keeping the gated release sequence unchanged.",
22
+ "appliesTo": ["maestro"]
23
+ },
24
+ {
25
+ "id": "read-only-local-capability",
26
+ "title": "Expose playbooks read-only",
27
+ "guidance": "Treat playbooks as a packaged local capability with allowlisted resource reads and no mutating local tools.",
28
+ "appliesTo": ["maestro", "align", "diagnose", "tdd", "cleanup"]
29
+ },
30
+ {
31
+ "id": "bundle-first-support-assets",
32
+ "title": "Prefer packaged assets",
33
+ "guidance": "Use support-bundle-installed docs and packaged MCP assets instead of source-checkout-relative guessing.",
34
+ "appliesTo": ["maestro", "sage", "vet"]
35
+ }
36
+ ],
37
+ "references": [
38
+ {
39
+ "id": "installed-support-bundle",
40
+ "title": "Installed support bundle contract",
41
+ "path": "docs/installed-sdk.md",
42
+ "role": "support-bundle"
43
+ },
44
+ {
45
+ "id": "mcp-setup",
46
+ "title": "MCP setup and GitMCP verification",
47
+ "path": "docs/mcp-setup.md",
48
+ "role": "mcp-setup"
49
+ },
50
+ {
51
+ "id": "native-engineering-patterns",
52
+ "title": "Native engineering patterns",
53
+ "path": "docs/reference/native-engineering-patterns.md",
54
+ "role": "reference"
55
+ },
56
+ {
57
+ "id": "native-style-and-deslop",
58
+ "title": "Native style and deslop",
59
+ "path": "docs/reference/native-style-and-deslop.md",
60
+ "role": "reference"
61
+ },
62
+ {
63
+ "id": "native-security-playbooks",
64
+ "title": "Native security playbooks",
65
+ "path": "docs/reference/native-security-playbooks.md",
66
+ "role": "reference"
67
+ },
68
+ {
69
+ "id": "native-source-selection",
70
+ "title": "Native source selection",
71
+ "path": "docs/reference/native-source-selection.md",
72
+ "role": "reference"
73
+ },
74
+ {
75
+ "id": "maestro-native-ingest-map",
76
+ "title": "Maestro native ingest map",
77
+ "path": "skills/maestro/references/native-ingest-map.md",
78
+ "role": "skill-reference"
79
+ },
80
+ {
81
+ "id": "sage-source-selection-pack",
82
+ "title": "Sage source selection pack",
83
+ "path": "skills/sage/references/source-selection.md",
84
+ "role": "skill-reference"
85
+ },
86
+ {
87
+ "id": "vet-security-playbooks-pack",
88
+ "title": "Vet security playbooks pack",
89
+ "path": "skills/vet/references/security-playbooks.md",
90
+ "role": "skill-reference"
91
+ },
92
+ {
93
+ "id": "align-shared-language-pack",
94
+ "title": "Align shared language pack",
95
+ "path": "skills/align/references/shared-language.md",
96
+ "role": "skill-reference"
97
+ },
98
+ {
99
+ "id": "cleanup-style-and-deslop-pack",
100
+ "title": "Cleanup style and deslop pack",
101
+ "path": "skills/cleanup/references/style-and-deslop.md",
102
+ "role": "skill-reference"
103
+ }
104
+ ],
105
+ "provenance": [
106
+ {
107
+ "kind": "product-rule",
108
+ "note": "Repo-owned native curation only; do not expose upstream-branded catalogs as first-class product surfaces."
109
+ },
110
+ {
111
+ "kind": "release-scope",
112
+ "note": "Playbooks stay read-only in this release and extend the existing first-party local capability registry."
113
+ }
114
+ ]
115
+ }
116
+ ]
117
+ }
package/mcp/servers.json CHANGED
@@ -2,51 +2,61 @@
2
2
  "schemaVersion": "0.1.0",
3
3
  "servers": [
4
4
  {
5
+ "kind": "gitmcp-evidence",
5
6
  "category": "meta-list",
6
7
  "repo": "sindresorhus/awesome",
7
8
  "endpoint": "https://gitmcp.io/sindresorhus/awesome"
8
9
  },
9
10
  {
11
+ "kind": "gitmcp-evidence",
10
12
  "category": "typescript",
11
13
  "repo": "dzharii/awesome-typescript",
12
14
  "endpoint": "https://gitmcp.io/dzharii/awesome-typescript"
13
15
  },
14
16
  {
17
+ "kind": "gitmcp-evidence",
15
18
  "category": "rust",
16
19
  "repo": "rust-unofficial/awesome-rust",
17
20
  "endpoint": "https://gitmcp.io/rust-unofficial/awesome-rust"
18
21
  },
19
22
  {
23
+ "kind": "gitmcp-evidence",
20
24
  "category": "go",
21
25
  "repo": "avelino/awesome-go",
22
26
  "endpoint": "https://gitmcp.io/avelino/awesome-go"
23
27
  },
24
28
  {
29
+ "kind": "gitmcp-evidence",
25
30
  "category": "python",
26
31
  "repo": "vinta/awesome-python",
27
32
  "endpoint": "https://gitmcp.io/vinta/awesome-python"
28
33
  },
29
34
  {
35
+ "kind": "gitmcp-evidence",
30
36
  "category": "java",
31
37
  "repo": "akullpp/awesome-java",
32
38
  "endpoint": "https://gitmcp.io/akullpp/awesome-java"
33
39
  },
34
40
  {
41
+ "kind": "gitmcp-evidence",
35
42
  "category": "dotnet",
36
43
  "repo": "quozd/awesome-dotnet",
37
44
  "endpoint": "https://gitmcp.io/quozd/awesome-dotnet"
38
45
  },
39
46
  {
47
+ "kind": "gitmcp-evidence",
40
48
  "category": "security",
41
49
  "repo": "sbilly/awesome-security",
42
50
  "endpoint": "https://gitmcp.io/sbilly/awesome-security"
43
51
  },
44
52
  {
53
+ "kind": "gitmcp-evidence",
45
54
  "category": "self-hosted",
46
55
  "repo": "awesome-selfhosted/awesome-selfhosted",
47
56
  "endpoint": "https://gitmcp.io/awesome-selfhosted/awesome-selfhosted"
48
57
  },
49
58
  {
59
+ "kind": "gitmcp-evidence",
50
60
  "category": "system-design",
51
61
  "repo": "checkcheckzz/system-design-interview",
52
62
  "endpoint": "https://gitmcp.io/checkcheckzz/system-design-interview"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jstn-sdk/ma",
3
- "version": "0.1.10",
3
+ "version": "0.1.12",
4
4
  "description": "Codex-native skills system for architecture, evidence, review, and gated build guidance.",
5
5
  "license": "MIT",
6
6
  "author": "JustineDevs",
@@ -58,11 +58,14 @@
58
58
  "postinstall": "node ./scripts/postinstall.js",
59
59
  "test": "node --test",
60
60
  "status": "node ./bin/ma.js status",
61
+ "linux:packages:build": "node ./scripts/build-linux-packages.mjs",
62
+ "linux:packages:smoke": "node ./scripts/linux-package-smoke.mjs",
61
63
  "build:gate": "node ./bin/ma.js run '$build'",
62
64
  "release:meta": "node ./scripts/release-metadata.js",
63
65
  "release:sync": "node ./scripts/release-sync.js",
64
66
  "release:advance": "node ./scripts/release-sync.js --force --bump patch",
65
67
  "release:verify": "node ./scripts/release-verify.js",
68
+ "release:assets": "node ./.github/scripts/validate-release-assets.js",
66
69
  "release:check": "npm run release:verify && npm run skills:manifest && npm run plugin:sync && npm run skills:validate && npm run plugin:verify && npm run skills:pack && npm run check && npm test && npm run pack:inspect",
67
70
  "skills:manifest": "node ./scripts/skills-manifest.js",
68
71
  "skills:validate": "node ./scripts/skills-validate.js",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "meta-architect",
3
3
  "displayName": "Meta-Architect",
4
- "version": "0.1.10",
4
+ "version": "0.1.12",
5
5
  "description": "Programmatic architecture and verified engineering skills for Codex-native workflows.",
6
6
  "entry": "./README.md",
7
7
  "skillsDir": "./skills"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "meta-architect",
3
- "version": "0.1.10",
4
- "description": "Skills-first workflow layer for Codex with architecture, evidence, review, and gated build guidance.",
3
+ "version": "0.1.12",
4
+ "description": "Skills-first workflow layer for Codex with a bounded autonomous manager, architecture, evidence, review, and gated build guidance.",
5
5
  "author": {
6
6
  "name": "JustineDevs",
7
7
  "url": "https://github.com/JustineDevs"
@@ -15,8 +15,8 @@
15
15
  "apps": "./.app.json",
16
16
  "interface": {
17
17
  "displayName": "Meta-Architect",
18
- "shortDescription": "Architecture-first skill bundle for Codex workflows.",
19
- "longDescription": "Meta-Architect packages reusable Codex skills plus plugin-scoped MCP and app metadata. The in-session skill workflow is primary. The ma helper command and .ma state only support setup, release gates, and optional local helper automation.",
18
+ "shortDescription": "Architecture-first skill bundle with a bounded in-session autonomous manager.",
19
+ "longDescription": "Meta-Architect packages reusable Codex skills plus plugin-scoped MCP and app metadata. The in-session skill workflow is primary, with `$maestro` as the single bounded autonomous manager over the fixed gated sequence and the publishable non-gating helper skills. The `ma` helper command and `.ma` state only support setup, release gates, and optional local helper automation.",
20
20
  "developerName": "JustineDevs",
21
21
  "category": "Developer Tools"
22
22
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meta-architect",
3
- "version": "0.1.10",
3
+ "version": "0.1.12",
4
4
  "collections": [
5
5
  "sindresorhus/awesome",
6
6
  "dzharii/awesome-typescript",
@@ -9,6 +9,10 @@ This plugin bundle packages the Meta-Architect skill surfaces for consumers that
9
9
  - `.app.json`
10
10
  - `.mcp.json`
11
11
  - bundled Meta-Architect skill surfaces under `skills/`
12
+ - one umbrella autonomous manager: `$maestro`
13
+ - fixed gated lanes: `$arch`, `$sage`, `$flow`, `$vet`, `$vibe`, `$build`
14
+ - non-gating helper skills: `$align`, `$diagnose`, `$tdd`, `$cleanup`
15
+ - packaged native reference files mirrored under the relevant skill folders
12
16
  - a release-scoped version line aligned to the repo
13
17
 
14
18
  ## What the plugin does not contain
@@ -46,6 +50,26 @@ The plugin-facing bundle should be consumed alongside the repository’s documen
46
50
 
47
51
  Canonical package/runtime path:
48
52
 
53
+ Debian-family install:
54
+
55
+ ```bash
56
+ sudo apt install ./meta-architect_<version>_all.deb
57
+ ```
58
+
59
+ Arch-family install:
60
+
61
+ ```bash
62
+ sudo pacman -U ./meta-architect-<version>-1-any.pkg.tar.xz
63
+ ```
64
+
65
+ Fedora/openSUSE install:
66
+
67
+ ```bash
68
+ sudo dnf install ./meta-architect-<version>-1.noarch.rpm
69
+ ```
70
+
71
+ npm fallback/default supported path:
72
+
49
73
  ```bash
50
74
  # Install
51
75
  npm i -g @openai/codex@latest @jstn-sdk/ma@latest
@@ -79,6 +103,8 @@ npm run skills:install -- --path ./dist/installed-skills
79
103
 
80
104
  Consumer expectation:
81
105
  - the plugin ships the same public skill contracts as the canonical `skills/` directory
106
+ - `$maestro` remains the only umbrella surface in the plugin bundle and acts as the bounded autonomous manager for the in-session workflow
107
+ - helper skills are installable mirrors, but they remain non-gating and do not create new release gates
82
108
  - it does not define a looser or simplified product contract
83
109
 
84
110
  ## MCP wiring expectations
@@ -105,7 +131,7 @@ When consuming the plugin:
105
131
  The plugin version should track the release scope of the core repo.
106
132
 
107
133
  For this repository:
108
- - plugin scope is aligned to Meta-Architect `v0.1.10`
134
+ - plugin scope is aligned to Meta-Architect `v0.1.12`
109
135
  - any breaking contract change should be versioned intentionally
110
136
 
111
137
  The plugin is one distribution surface of the same product, not a separate product line.
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: align
3
+ description: "Use when the user needs scope alignment, shared language, or docs clarity before or between gated lanes."
4
+ ---
5
+
6
+ # Align
7
+
8
+ Use this skill inside Codex when the problem is ambiguity, drift, or mismatched language rather than missing implementation. `align` is a non-gating helper skill.
9
+
10
+ ## Output
11
+
12
+ Produce:
13
+ - current ambiguity or mismatch
14
+ - normalized terminology
15
+ - scope boundary and exclusions
16
+ - acceptance checks or rewritten prompts
17
+ - exact next trigger, usually `$maestro` or the lane that owns the next decision
18
+
19
+ ## Rules
20
+
21
+ - Align language and scope without creating a new release gate.
22
+ - Prefer tightening existing artifacts over inventing parallel docs.
23
+ - Keep terminology Meta-Architect-native for user-facing surfaces.
24
+ - Use `references/shared-language.md` for naming, taxonomy, and docs-clarity patterns.
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "$align"
3
+ short_description: "Scope alignment and shared language helper"
4
+ default_prompt: "Use $align to resolve scope drift, normalize terminology, and tighten prompts or docs before handing work back to the owning gated lane."
@@ -0,0 +1,24 @@
1
+ # Shared Language
2
+
3
+ Use this reference pack with `align` when terminology, scope, or docs are drifting.
4
+
5
+ ## Naming rules
6
+
7
+ - `$maestro` is the only umbrella surface.
8
+ - `$arch -> $sage -> $flow -> $vet -> $vibe -> $build` remains the fixed gated sequence.
9
+ - `align`, `diagnose`, `tdd`, and `cleanup` are helper skills only.
10
+ - User-facing guidance stays Meta-Architect-native; external source names may appear as evidence, not as product surfaces.
11
+
12
+ ## Alignment checklist
13
+
14
+ - Name the current artifact, lane, and decision owner.
15
+ - Replace vague nouns with one stable term.
16
+ - Separate what is in scope, out of scope, and not yet decided.
17
+ - Rewrite prompts or docs so the next trigger is obvious.
18
+
19
+ ## Docs-clarity patterns
20
+
21
+ - Put the next trigger in one line.
22
+ - Distinguish terminal helper commands from in-session skills.
23
+ - Distinguish gated lanes from helper skills.
24
+ - Prefer concise, high-signal wording over long catalogs or branding-heavy lists.
File without changes
File without changes
@@ -0,0 +1,23 @@
1
+ ---
2
+ name: cleanup
3
+ description: "Use when the user wants contract-preserving simplification, anti-slop cleanup, or a final-pass polish after the main decision is made."
4
+ ---
5
+
6
+ # Cleanup
7
+
8
+ Use this skill inside Codex when the core behavior is understood but the artifact still needs simplification, deslop work, or clearer prose. `cleanup` is a non-gating helper skill.
9
+
10
+ ## Output
11
+
12
+ Produce:
13
+ - removable complexity or noisy wording
14
+ - behavior-preserving simplifications
15
+ - residual risks after cleanup
16
+ - exact next trigger, usually the owning lane or release verification
17
+
18
+ ## Rules
19
+
20
+ - Prefer deletion over addition.
21
+ - Preserve behavior and decision ownership while cleaning up.
22
+ - Keep user-facing wording concise and product-native.
23
+ - Use `references/style-and-deslop.md` for simplification and prose cleanup patterns.
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "$cleanup"
3
+ short_description: "Anti-slop cleanup and final-pass polish"
4
+ default_prompt: "Use $cleanup to simplify noisy code or docs, remove avoidable slop, and polish wording without changing the owning lane."
@@ -0,0 +1,18 @@
1
+ # Style And Deslop
2
+
3
+ Use this reference pack with `cleanup` when an artifact works but still feels bloated, generic, or hard to trust.
4
+
5
+ ## Cleanup priorities
6
+
7
+ - remove repeated framing
8
+ - cut placeholder language and empty intensifiers
9
+ - collapse duplicate concepts into one stable term
10
+ - prefer shorter, sharper instructions when they preserve meaning
11
+ - delete unused or non-essential surface area before adding more structure
12
+
13
+ ## Safe cleanup checks
14
+
15
+ - behavior or contract is unchanged
16
+ - the next trigger is still explicit
17
+ - helper-vs-gated distinctions remain intact
18
+ - no upstream brand names are introduced as product surfaces
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: diagnose
3
+ description: "Use when the user needs failure triage, blocked-lane diagnosis, or root-cause decomposition before the next gate can move."
4
+ ---
5
+
6
+ # Diagnose
7
+
8
+ Use this skill inside Codex when a lane is blocked, a symptom is vague, or the next useful move is to decompose the failure before editing code. `diagnose` is a non-gating helper skill.
9
+
10
+ ## Output
11
+
12
+ Produce:
13
+ - observed symptom
14
+ - likely failure slices
15
+ - missing evidence or missing reproduction steps
16
+ - smallest next probe
17
+ - exact next trigger, usually the owning lane or `$maestro`
18
+
19
+ ## Rules
20
+
21
+ - Decompose the problem before proposing broad fixes.
22
+ - Prefer the smallest reproducible boundary that can confirm or kill a hypothesis.
23
+ - Keep release-state ownership with the gated lane that is blocked.
24
+ - Escalate assumptions clearly when evidence is still incomplete.
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "$diagnose"
3
+ short_description: "Blocked-lane diagnosis and failure triage"
4
+ default_prompt: "Use $diagnose to break a vague failure into concrete hypotheses, probes, and the smallest next debugging step without changing gate ownership."
File without changes
@@ -1,11 +1,34 @@
1
1
  ---
2
2
  name: maestro
3
- description: "Use when the user wants Meta-Architect to choose the best next workflow step, explain why, and recommend the right lane or assignment."
3
+ description: "Use when the user wants the singular Meta-Architect in-session autonomous manager: choose the best next workflow step, manage the fixed gated workflow, and route bounded helper handoffs inside Codex."
4
4
  ---
5
5
 
6
6
  # Maestro
7
7
 
8
- Use this skill inside Codex when you want Meta-Architect to act like a workflow manager.
8
+ ## Overview
9
+
10
+ Use this skill inside Codex as the singular Meta-Architect umbrella surface and bounded autonomous manager. It inspects workflow state, chooses the smallest safe next step, manages the fixed gated design-and-review sequence one lane at a time, and routes helper handoffs when they are enough. There is no separate shipped `$meta-architect` skill.
11
+
12
+ ## Workflow
13
+
14
+ 1. Inspect the current gate state, active evidence, and current blockers.
15
+ 2. Choose the smallest safe next step and decide whether the next move is:
16
+ - a direct advisory result
17
+ - a helper-skill handoff
18
+ - a gated-lane handoff
19
+ 3. When the issue is alignment, diagnosis, regression-first execution, or final-pass cleanup, hand work to the publishable but non-gating helper skills:
20
+ - `$align`
21
+ - `$diagnose`
22
+ - `$tdd`
23
+ - `$cleanup`
24
+ 4. When the user wants the full Meta-Architect workflow, manage the fixed gated sequence without inventing new gates or skipping lane ownership:
25
+ - `$arch`
26
+ - `$sage`
27
+ - `$flow`
28
+ - `$vet`
29
+ - `$vibe`
30
+ - `$build`
31
+ 5. End with a clear result shape: decision, evidence, blockers, the lane assignment if any, and the exact next trigger.
9
32
 
10
33
  ## Output
11
34
 
@@ -22,4 +45,14 @@ Produce:
22
45
  - Prefer the smallest next step that moves the workflow forward safely.
23
46
  - Respect current gate state before recommending implementation or release work.
24
47
  - Be explicit when more evidence, planning, or validation is still needed.
25
- - Route to the in-session skill flow first; use helper commands only when they are the clearest support path.
48
+ - Treat the in-session skill flow as primary. Use `ma ...` terminal helpers only when repo-local setup, inspection, or scripted state automation is explicitly the better support path.
49
+ - Keep `$maestro` as the only umbrella surface. It owns next-step management and bounded handoff decisions, but it does not replace the outputs owned by the gated lanes.
50
+ - Helper skills are publishable mirrors, but they are non-gating. They support a lane and then hand control back to `$maestro` or the fixed gated sequence.
51
+ - Do not expand the release-gated sequence for this release. Gate ownership stays with `$arch -> $sage -> $flow -> $vet -> $vibe -> $build`.
52
+ - Stay inside Codex unless the user explicitly asks for repo-local helper commands.
53
+ - Keep the workflow architecture-first. Do not jump into code before the architecture and review lanes are grounded.
54
+ - Use approved discovery accelerators such as Ossium, Trendshift, Dev Hunt, Libraries.io, Open Hub, and Open-source Projects when you need faster OSS candidate discovery, then validate any promising project through upstream repos and official docs.
55
+ - Keep the `$sage` order explicit: known upstream sources first, discovery accelerators second, exact repo mapping third, approval only after upstream verification.
56
+ - Prefer official docs, upstream repos, and repo-configured GitMCP sources when validating tooling choices.
57
+ - For release gates and branch policy, read `references/core-release-rules.md`.
58
+ - For the native helper-family contract and pattern classification, read `references/native-ingest-map.md`.
@@ -1,4 +1,4 @@
1
1
  interface:
2
2
  display_name: "$maestro"
3
- short_description: "Best next step and lane orchestration"
4
- default_prompt: "Use $maestro to inspect the current Meta-Architect workflow state, choose the best next step, explain why it is next, and recommend the right lane or assignment."
3
+ short_description: "Bounded autonomous manager for the gated workflow and helper handoffs"
4
+ default_prompt: "Use $maestro as the singular Meta-Architect in-session autonomous manager: inspect workflow state, choose the smallest safe next step, hand work to $align, $diagnose, $tdd, or $cleanup when a publishable non-gating helper is enough, and manage the fixed gated sequence at $arch, $sage, $flow, $vet, $vibe, and $build without inventing new gates."
@@ -0,0 +1,44 @@
1
+ # Native Ingest Map
2
+
3
+ Meta-Architect absorbs new pattern families as native product guidance without turning them into new umbrella brands or new release gates.
4
+
5
+ ## Publishable helper skills
6
+
7
+ - `align`
8
+ - purpose: scope alignment, shared language, and docs clarity
9
+ - gate effect: none
10
+ - `diagnose`
11
+ - purpose: failure decomposition, blocked-lane triage, and root-cause framing
12
+ - gate effect: none
13
+ - `tdd`
14
+ - purpose: regression-first and test-first execution scaffolds
15
+ - gate effect: none
16
+ - `cleanup`
17
+ - purpose: anti-slop cleanup, prose humanization, and final-pass polish
18
+ - gate effect: none
19
+
20
+ ## Existing-lane absorption
21
+
22
+ - `$sage`
23
+ - owns source selection, upstream validation order, and evidence quality
24
+ - uses curated native reference packs instead of raw catalog browsing as the product surface
25
+ - `$vet`
26
+ - owns security/trust-boundary review and security playbook application
27
+ - absorbs security playbook patterns without creating a second security umbrella
28
+ - `$maestro`
29
+ - remains the only umbrella surface and bounded autonomous manager
30
+ - owns next-step recommendation, helper handoff decisions, and fixed-sequence management
31
+ - does not create new gate states and does not replace the outputs owned by gated lanes
32
+
33
+ ## Fixed gated sequence
34
+
35
+ The release-owned sequence does not change in this ingest:
36
+
37
+ 1. `$arch`
38
+ 2. `$sage`
39
+ 3. `$flow`
40
+ 4. `$vet`
41
+ 5. `$vibe`
42
+ 6. `$build`
43
+
44
+ Helper skills remain publishable but non-gating. They can prepare, unblock, or clean up work around those lanes, but they do not create new gate states and they do not own release-state transitions.
@@ -5,7 +5,7 @@ description: "Use when the user wants evidence-backed technology choices, OSS ev
5
5
 
6
6
  # Sage
7
7
 
8
- Use this skill inside Codex to verify or challenge stack choices with real sources.
8
+ Use this skill inside Codex to verify or challenge stack choices with real sources. `$sage` remains the evidence gate even as Meta-Architect absorbs more native curation and reference packs.
9
9
 
10
10
  ## Output
11
11
 
@@ -24,6 +24,7 @@ Produce:
24
24
  - use discovery accelerators to find or narrow candidates
25
25
  - map the selected candidate back to an exact upstream repo
26
26
  - verify against upstream repos and official docs before approving it
27
+ - Use `references/source-selection.md` when you need the native source-selection contract, evidence ladder, or packaged discovery rules.
27
28
  - Use approved discovery accelerators when you need faster OSS candidate discovery:
28
29
  - Ossium (`https://ossium.live/home`) for trending, curated, YC-backed, and GSoC-linked OSS discovery
29
30
  - Trendshift (`https://trendshift.io/`) for rising GitHub engagement and topic momentum
@@ -31,6 +32,7 @@ Produce:
31
32
  - Libraries.io (`https://libraries.io/`) for package/dependency metadata, with caution because its public data is scraped and not validated/curated for accuracy
32
33
  - Open Hub (`https://openhub.net/`) for project activity, contributor, and comparison signals
33
34
  - Open-source Projects (`https://www.opensourceprojects.dev/`) for curated OSS discovery and detailed project writeups
35
+ - Discovery accelerators are candidate-finding tools, not approval surfaces. The user-facing Meta-Architect product stays native even when evidence sources are external.
34
36
  - Do not invent package capabilities or maturity claims.
35
37
  - Prefer primary sources over summaries when validating technical details.
36
38
  - Do not treat discovery listings alone as VERIFIED evidence; promote candidates to upstream repos and official docs before approving them.
@@ -0,0 +1,28 @@
1
+ # Source Selection
2
+
3
+ Use this reference pack inside `$sage` when the repo needs evidence-backed selection without turning raw catalogs into the product surface.
4
+
5
+ ## Evidence order
6
+
7
+ 1. Known upstream repo and official docs
8
+ 2. Discovery accelerator to find or narrow candidates
9
+ 3. Exact upstream repo mapping for the shortlisted candidate
10
+ 4. Upstream repo plus official-doc verification before approval
11
+
12
+ ## Discovery accelerator rules
13
+
14
+ - Use accelerators to reduce search time, not to replace validation.
15
+ - Treat listings, rankings, and trend signals as hints.
16
+ - Promote any serious candidate to an exact upstream repo before calling it VERIFIED.
17
+ - Keep user-facing guidance in Meta-Architect language rather than echoing catalog branding as if it were a first-class product surface.
18
+
19
+ ## Minimum approval bar
20
+
21
+ - Exact upstream repo identified
22
+ - Official docs available when relevant
23
+ - Claimed capability verified from a primary source
24
+ - Maturity caveats called out when evidence is weak
25
+
26
+ ## Native posture
27
+
28
+ Meta-Architect ships curated guidance and playbooks. It does not ship a raw mirror of external catalogs. External sources remain evidence inputs, not user-facing skill identities.
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: tdd
3
+ description: "Use when the user wants regression-first or test-first scaffolding before implementation work expands."
4
+ ---
5
+
6
+ # TDD
7
+
8
+ Use this skill inside Codex when implementation should start by locking behavior with tests. `tdd` is a non-gating helper skill that supports execution once the relevant lane is ready.
9
+
10
+ ## Output
11
+
12
+ Produce:
13
+ - behavior to lock
14
+ - minimal regression or failing test shape
15
+ - implementation boundary
16
+ - proof that the test belongs to the requested change
17
+ - exact next trigger, usually the implementation lane or `$cleanup`
18
+
19
+ ## Rules
20
+
21
+ - Prefer the smallest failing test that proves the requested behavior.
22
+ - Lock current behavior before cleanup or refactor work when behavior is not already protected.
23
+ - Do not treat `tdd` as a replacement for the build gate.
24
+ - Keep test intent explicit so the next implementation step stays narrow.
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "$tdd"
3
+ short_description: "Regression-first and test-first helper"
4
+ default_prompt: "Use $tdd to define the smallest test that locks the requested behavior before implementation expands."