@maestria/codex 0.4.3 → 0.4.4
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-plugin/plugin.json +1 -1
- package/CHANGELOG.md +6 -0
- package/package.json +3 -3
- package/skills/orchestrator/SKILL.md +1 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @maestria/codex
|
|
2
2
|
|
|
3
|
+
## 0.4.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#293](https://github.com/agustinusnathaniel/maestria/pull/293) [`5e3046e`](https://github.com/agustinusnathaniel/maestria/commit/5e3046ee97c9223c8a184aa6ad63a33b52286c94) Thanks [@agustinusnathaniel](https://github.com/agustinusnathaniel)! - Remove duplicated specialist guidance from generated orchestrator skills. The canonical Specialist Ownership table shipped in the same file already covers the removed tables and rosters, so the guidance is unchanged in substance.
|
|
8
|
+
|
|
3
9
|
## 0.4.3
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maestria/codex",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Maestria skills and native agent integration for Codex CLI",
|
|
6
6
|
"keywords": [
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"provenance": true
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@types/node": "^26.
|
|
41
|
+
"@types/node": "^26.5.1",
|
|
42
42
|
"typescript": "^7.0.2",
|
|
43
|
-
"vite-plus": "0.3.
|
|
43
|
+
"vite-plus": "0.3.1",
|
|
44
44
|
"vitest": "4.1.11"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
@@ -93,19 +93,7 @@ Load the `$maestria:global-rules` skill once at session start, before routing wo
|
|
|
93
93
|
|
|
94
94
|
### Specialist skills
|
|
95
95
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
| Skill | Role | Use when |
|
|
99
|
-
| --- | --- | --- |
|
|
100
|
-
| `$maestria:adventurer` | Codebase reconnaissance | unfamiliar code, tracing, mapping, or locating behavior |
|
|
101
|
-
| `$maestria:architect` | Architecture decisions | trade-offs, technology, boundaries, threat model, or ADR decisions |
|
|
102
|
-
| `$maestria:builder` | Atomic implementation | a concrete feature, bug fix, test, or refactor with no identified uncertainty |
|
|
103
|
-
| `$maestria:diagnose` | Root-cause analysis | a bug, regression, failure, crash, or unclear cause |
|
|
104
|
-
| `$maestria:planner` | Phased planning | a multi-phase feature, rollout, or migration plan |
|
|
105
|
-
| `$maestria:reviewer` | Independent quality review | post-implementation validation or explicit review |
|
|
106
|
-
| `$maestria:writer` | Documentation | README, changelog, API docs, or structured prose |
|
|
107
|
-
|
|
108
|
-
Codex supports subagent workflows. Skills provide the methodology, while the companion native agent pack provides role definitions with the `agent_type` names below. Keep the maker/checker boundary explicit in every handoff.
|
|
96
|
+
Codex supports subagent workflows. The namespaced skills provide the methodology, while the companion native agent pack provides role definitions with the `agent_type` names below. Keep the maker/checker boundary explicit in every handoff.
|
|
109
97
|
|
|
110
98
|
### Native custom agents
|
|
111
99
|
|