You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Context-aware AI collaboration skills and implementation loop prompts for creating and validating user context, project AGENTS.md files, and skill artifacts across LLM providers.",
├── prompts/ # Prompt wrappers and implementation loop
71
78
│ ├── skills/ # Skill-wrapper prompts (route to canonical skills)
72
79
│ │ ├── create-usercontext-instructions.prompt.md # Generate user context instruction files
@@ -307,9 +314,21 @@ If paths must change, update the specification and README first, then adjust ski
307
314
308
315
---
309
316
310
-
## Installing as a Plugin (Claude Code and GitHub Copilot CLI)
317
+
## Installing as a Plugin
318
+
319
+
AI Context Kit ships native plugin metadata for Codex and compatibility metadata for Claude Code and GitHub Copilot CLI. Installing registers all 11 skills in the target runtime, with no manual `SKILL.md` loading required.
Then restart Codex, open **Plugins**, choose the **AI Context Kit** marketplace, and install `ai-context-kit`.
311
330
312
-
AI Context Kit is distributed as a plugin compatible with both Claude Code and GitHub Copilot CLI — they share the same plugin spec. Installing registers all 9 skills as namespaced slash commands in the plugin runtime, with no manual `SKILL.md` loading required.
331
+
This repository also supports repo-scoped skill discovery for direct local use. If you clone the repository and run Codex inside it, the `.agents/skills/` symlinks expose the canonical `skills/` directory without duplicating content.
313
332
314
333
### Claude Code
315
334
@@ -343,7 +362,7 @@ claude --plugin-dir ./path/to/ai-context-kit
343
362
344
363
### Invoking skills after installation
345
364
346
-
> **Plugin runtime vs. manual invocation:** This section covers invocation when the plugin is installed via the plugin system (Claude Code or Copilot CLI). If you are using the repository directly (cloned or forked), see [Invoking Skills](#invoking-skills) above — that approach requires loading each `SKILL.md` manually into your session.
365
+
> **Plugin runtime vs. manual invocation:** This section covers invocation when the plugin is installed via the plugin system. If you are using the repository directly (cloned or forked), see [Invoking Skills](#invoking-skills) above, or use Codex repo-scoped skill discovery through `.agents/skills/`.
347
366
348
367
Skills are namespaced to the plugin name. Inside a session:
349
368
@@ -376,13 +395,13 @@ claude plugin update ai-context-kit
376
395
377
396
## Using with OpenAI Codex
378
397
379
-
Codex auto-discovers skills from the `.agents/skills/` directory (scanned upward from the current working directory to the repo root). AI Context Kit ships a `.agents/skills/` directory whose entries are symlinks to the canonical `skills/`folder — no content duplication, single source of truth.
398
+
Codex auto-discovers skills from the `.agents/skills/` directory, scanning upward from the current working directory to the repo root. AI Context Kit ships a `.agents/skills/` directory whose entries are symlinks to the canonical `skills/`folders, so repo-local skill discovery and plugin packaging both point at the same source of truth.
380
399
381
400
Each skill also includes an `agents/openai.yaml` sidecar (`skills/<name>/agents/openai.yaml`) with UI metadata consumed by the Codex skill picker.
382
401
383
402
### Auto-discovery (no install needed)
384
403
385
-
If you clone this repo and run Codex from within it, all 9 skills are discovered automatically — no registration or import required.
404
+
If you clone this repo and run Codex from within it, all 11 skills are discovered automatically. No registration or import is required for repo-local use.
386
405
387
406
### Invoking skills in Codex
388
407
@@ -396,9 +415,13 @@ $repository-drift-control
396
415
397
416
`repository-drift-control` requires explicit invocation (`allow_implicit_invocation: false`) since it is a governance action.
398
417
418
+
### Installing the plugin instead of using repo-local discovery
419
+
420
+
If you want the skills available outside this repository without copying `.agents/skills/` into each project, install the plugin from the Codex marketplace flow described above.
421
+
399
422
### Using skills in your own project
400
423
401
-
To make these skills available when working in a different project, add the skill path to your Codex configuration, or copy/symlink the `.agents/skills/` directory into your project root.
424
+
To make these skills available when working in a different project without installing the plugin, add the skill path to your Codex configuration, or copy or symlink the `.agents/skills/` directory into your project root.
402
425
403
426
> **Note for Windows users:** Git symlink support must be enabled **before** checkout — otherwise git materialises symlinks as plain text files. Enable it at clone time:
0 commit comments