allagents 0.34.1 → 1.0.2

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.
Files changed (3) hide show
  1. package/README.md +22 -11
  2. package/dist/index.js +6346 -1815
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -214,6 +214,17 @@ allagents plugin list [marketplace]
214
214
  allagents plugin validate <path>
215
215
  ```
216
216
 
217
+ ### GitHub Overrides
218
+
219
+ For **Copilot** and **VSCode**, AllAgents copies GitHub-specific files from a plugin's `.github/` folder into the workspace's `.github/` directory:
220
+
221
+ - `.github/prompts/` — prompt files
222
+ - `.github/agents/` — agent overrides
223
+ - `.github/hooks/` — hook overrides
224
+ - `copilot-instructions.md` — root Copilot instructions
225
+
226
+ Root `agents/` and `hooks/` directories in a plugin also map to `.github/agents/` and `.github/hooks/` for Copilot/VSCode.
227
+
217
228
  ## .allagents/workspace.yaml
218
229
 
219
230
  The workspace configuration file lives in `.allagents/workspace.yaml` and defines repositories, plugins, workspace files, and target clients:
@@ -302,16 +313,16 @@ AllAgents supports 23 AI coding assistants:
302
313
 
303
314
  #### Universal Clients (share `.agents/skills/`)
304
315
 
305
- | Client | Skills | Agent File | Hooks | Commands | GitHub Overrides |
306
- |--------|--------|------------|-------|----------|------------------|
307
- | copilot | `.github/skills/` | `AGENTS.md` | `.github/hooks/` | No | `.github/` |
308
- | codex | `.agents/skills/` | `AGENTS.md` | No | No | No |
309
- | opencode | `.agents/skills/` | `AGENTS.md` | No | `.opencode/commands/` | No |
310
- | gemini | `.agents/skills/` | `GEMINI.md` | No | No | No |
311
- | ampcode | `.agents/skills/` | `AGENTS.md` | No | No | No |
312
- | vscode | `.agents/skills/` | `AGENTS.md` | No | No | `.github/` |
313
- | replit | `.agents/skills/` | `AGENTS.md` | No | No | No |
314
- | kimi | `.agents/skills/` | `AGENTS.md` | No | No | No |
316
+ | Client | Skills | Agent File | Hooks | Commands |
317
+ |--------|--------|------------|-------|----------|
318
+ | copilot | `.github/skills/` | `AGENTS.md` | `.github/hooks/` | No |
319
+ | codex | `.agents/skills/` | `AGENTS.md` | No | No |
320
+ | opencode | `.agents/skills/` | `AGENTS.md` | No | `.opencode/commands/` |
321
+ | gemini | `.agents/skills/` | `GEMINI.md` | No | No |
322
+ | ampcode | `.agents/skills/` | `AGENTS.md` | No | No |
323
+ | vscode | `.agents/skills/` | `AGENTS.md` | No | No |
324
+ | replit | `.agents/skills/` | `AGENTS.md` | No | No |
325
+ | kimi | `.agents/skills/` | `AGENTS.md` | No | No |
315
326
 
316
327
  #### Provider-Specific Clients
317
328
 
@@ -333,7 +344,7 @@ AllAgents supports 23 AI coding assistants:
333
344
  | openhands | `.openhands/skills/` | `AGENTS.md` | No | No |
334
345
  | kiro | `.kiro/skills/` | `AGENTS.md` | No | No |
335
346
 
336
- > **Note:** Universal clients share the same `.agents/skills/` directory. GitHub overrides (`.github/prompts/`, `.github/agents/`, `.github/hooks/`, `copilot-instructions.md`) are copied to Copilot/VSCode's `.github/` folder. Root `agents/` and `hooks/` also map to `.github/agents/` and `.github/hooks/` for Copilot.
347
+ > **Note:** Universal clients share the same `.agents/skills/` directory. See [GitHub Overrides](#github-overrides) for how Copilot and VSCode handle `.github/` content.
337
348
 
338
349
  ## Marketplace Structure
339
350