allagents 1.12.0-next.1 → 1.13.0-next.1
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 +8 -1
- package/dist/index.js +484 -166
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -123,11 +123,18 @@ my-plugin/
|
|
|
123
123
|
│ └── SKILL.md
|
|
124
124
|
├── agents/ # Agent definitions
|
|
125
125
|
├── commands/ # Slash commands (Claude, OpenCode)
|
|
126
|
-
├── hooks/ # Lifecycle hooks (Claude, Factory, Copilot)
|
|
126
|
+
├── hooks/ # Lifecycle hooks (Claude, Factory, Copilot, Codex)
|
|
127
|
+
├── .codex-plugin/ # Codex plugin manifest and explicit hook paths
|
|
127
128
|
├── .github/ # Copilot/VSCode overrides
|
|
128
129
|
└── .mcp.json # MCP server configs
|
|
129
130
|
```
|
|
130
131
|
|
|
132
|
+
For Codex project sync, AllAgents copies skills into `.codex/skills/`, merges
|
|
133
|
+
plugin hooks into `.codex/hooks.json`, and preserves user-owned hooks already in
|
|
134
|
+
that file. Codex plugins can declare hooks in `.codex-plugin/plugin.json` with a
|
|
135
|
+
`hooks` path, path array, inline object, or inline object array; otherwise
|
|
136
|
+
AllAgents falls back to `hooks/hooks.json`.
|
|
137
|
+
|
|
131
138
|
## Documentation
|
|
132
139
|
|
|
133
140
|
Full documentation at [allagents.dev](https://allagents.dev):
|