agent-directives 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +3 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -30,12 +30,9 @@ that should receive the instructions:
30
30
  ```bash
31
31
  cd /path/to/your-project
32
32
 
33
- # Once published to npm:
33
+ # Install the required Codex/OpenAI agent directives and skills.
34
34
  npx agent-directives sync --tool codex --yes
35
35
 
36
- # Until the first npm release is available, use the GitHub source package:
37
- npx --yes github:pertrai1/agent-directives sync --tool codex --yes
38
-
39
36
  # Add the root instruction file, then edit every <!-- FILL IN: ... --> placeholder.
40
37
  curl -fsSL \
41
38
  https://raw.githubusercontent.com/pertrai1/agent-directives/main/templates/AGENTS.md \
@@ -55,7 +52,7 @@ After installation, open the root instruction file and:
55
52
  4. Run the check command for your target tool:
56
53
 
57
54
  ```bash
58
- npx --yes github:pertrai1/agent-directives check --tool codex
55
+ npx agent-directives check --tool codex
59
56
  ```
60
57
 
61
58
  ## Installing for Different Tools
@@ -154,9 +151,7 @@ Releases use Changesets and GitHub Actions, matching the release flow used by
154
151
  after that PR is merged, publishes the package with npm provenance and creates
155
152
  a GitHub release.
156
153
 
157
- Before publishing for the first time, configure npm trusted publishing for this
158
- repository/package or provide equivalent npm automation credentials. The workflow
159
- uses `id-token: write` and `npm publish --provenance`.
154
+ The package is published to npm. Future releases require npm trusted publishing for this repository/package (or equivalent npm automation credentials) so the workflow can publish with provenance. The workflow uses `id-token: write` and `npm publish --provenance`.
160
155
 
161
156
  ## Directives vs Skills
162
157
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-directives",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Reusable agent directives, skills, and CLI tooling for AI coding workflows",
5
5
  "license": "MIT",
6
6
  "author": "Rob Simpson <rsimpson2@me.com>",