@dalzoubi/dev-agents-sync 2.0.8 → 2.0.10
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 +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @dalzoubi/dev-agents-sync
|
|
2
2
|
|
|
3
|
-
CLI for syncing managed dev-agent prompts from `dalzoubi/dev-agents` into consumer repositories for Claude Code and
|
|
3
|
+
CLI for syncing managed dev-agent prompts from `dalzoubi/dev-agents` into consumer repositories for Claude Code, Cursor, GitHub Copilot, and OpenAI Codex.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -53,6 +53,8 @@ Codex is **opt-in only**. Unlike other targets there is no filesystem signal to
|
|
|
53
53
|
|
|
54
54
|
**Output shape.** `init --targets codex` writes six directory-per-skill files — one per agent — at `.agents/skills/<agent>/SKILL.md` (`analyze`, `define`, `implement`, `supervise`, `test`, `validate`), plus a thin root `AGENTS.md` index. Codex discovers these by scanning from the working directory up to the repo root, so each agent lives at its own `.agents/skills/<agent>/SKILL.md` path. Every file carries the managed-by marker, and `update` and `check` scope to these paths exactly like the other targets.
|
|
55
55
|
|
|
56
|
+
**Standalone.** Codex is a first-class standalone target. Each emitted `SKILL.md` bundles the workflow support docs it references, so a Codex-only install does **not** need `.claude/skills/*.md`, `.cursor/`, or any other target files to run the six agent workflows.
|
|
57
|
+
|
|
56
58
|
**Model-invoked, not slash commands.** Codex Agent Skills are model-invoked: a Codex user triggers an agent through `/skills`, a `$<name>` mention, or implicit selection by the model — *not* by typing a literal `/define`-style slash command the way Claude commands work. This is an accepted approximation of the slash-command UX the other targets provide; the agent content is the same, only the invocation differs.
|
|
57
59
|
|
|
58
60
|
**Manual removal.** Like every target, there is no uninstall or cleanup command. Dropping `codex` from the `targets` in `.dev-agents-sync.json` stops future writes, but the already-written `.agents/skills/<agent>/SKILL.md` directories and the root `AGENTS.md` are removed manually.
|
|
@@ -150,4 +152,3 @@ The CLI overwrites files with this marker. It refuses to overwrite unmarked file
|
|
|
150
152
|
## License
|
|
151
153
|
|
|
152
154
|
UNLICENSED. This package is proprietary and all rights are reserved.
|
|
153
|
-
|
package/package.json
CHANGED