omniagent 0.1.5 → 0.1.6
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/CLAUDE.md +1 -0
- package/README.md +3 -1
- package/dist/cli.js +859 -180
- package/package.json +3 -2
- package/schemas/profile.v1.json +1 -1
package/CLAUDE.md
CHANGED
|
@@ -61,6 +61,7 @@ TypeScript 5.x, Node.js 18+: Enforced by Biome (formatting and linting)
|
|
|
61
61
|
syncable template surfaces (skills, subagents, slash commands, and instruction templates).
|
|
62
62
|
- Any future syncable surface must integrate with the shared template-script runtime instead of
|
|
63
63
|
introducing surface-specific script execution behavior.
|
|
64
|
+
- For GitHub actions, use `gh` CLI.
|
|
64
65
|
- Keep ignore and publish rules aligned with tool-specific directories so package publishes stay
|
|
65
66
|
clean.
|
|
66
67
|
- CLI shim E2E docs: `docs/cli-shim-e2e.md`.
|
package/README.md
CHANGED
|
@@ -144,7 +144,9 @@ omniagent sync --var REVIEW_STYLE=thorough # override a variable from the C
|
|
|
144
144
|
|
|
145
145
|
Profiles support `extends` chains, `.local` overrides (personal, gitignored),
|
|
146
146
|
glob-based `enable`/`disable` lists, per-target toggles, and template
|
|
147
|
-
variables.
|
|
147
|
+
variables. Individual skills, subagents, and commands can also set frontmatter
|
|
148
|
+
`enabled: false` to stay hidden by default until a profile opts them in.
|
|
149
|
+
Discover and validate profiles with `omniagent profiles`,
|
|
148
150
|
`omniagent profiles show <name>`, and `omniagent profiles validate`.
|
|
149
151
|
|
|
150
152
|
See [`docs/profiles.md`](docs/profiles.md) for the full schema, resolution
|