omniagent 0.1.5 → 0.1.7
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/README.md +6 -2
- package/dist/cli.js +1080 -201
- package/package.json +3 -2
- package/schemas/profile.v1.json +1 -1
- package/CLAUDE.md +0 -67
- package/CONTRIBUTING.md +0 -56
- package/biome.json +0 -41
- package/tasks.md +0 -25
- package/tsconfig.json +0 -13
- package/vite.config.ts +0 -22
- package/vitest.config.ts +0 -10
package/README.md
CHANGED
|
@@ -144,8 +144,12 @@ 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.
|
|
148
|
-
`
|
|
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`,
|
|
150
|
+
`omniagent profiles init <name>`, `omniagent profiles show <name>`, and
|
|
151
|
+
`omniagent profiles validate`. Use `omniagent profiles init <name>.local`
|
|
152
|
+
to create a personal local profile override.
|
|
149
153
|
|
|
150
154
|
See [`docs/profiles.md`](docs/profiles.md) for the full schema, resolution
|
|
151
155
|
order, and examples.
|