repo-agent-brief 0.4.0 → 0.4.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 (3) hide show
  1. package/README.md +4 -0
  2. package/package.json +6 -2
  3. package/src/cli.js +0 -0
package/README.md CHANGED
@@ -127,3 +127,7 @@ MIT
127
127
  ## Agent Skill
128
128
 
129
129
  This package includes an OpenClaw/Claude-style skill at `skills/repo-agent-brief` that teaches agents to run repo preflight and diff-aware handoff briefs before editing or reviewing code.
130
+
131
+ ## Release Automation
132
+
133
+ This package is published from GitHub Actions using npm Trusted Publishing with provenance. Releases are built on GitHub-hosted runners and no long-lived npm publish token is required.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repo-agent-brief",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Generate concise, safety-aware project briefs for coding agents.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -32,7 +32,8 @@
32
32
  "license": "MIT",
33
33
  "repository": {
34
34
  "type": "git",
35
- "url": "git+https://github.com/BuiltByEcho/agent-brief.git"
35
+ "url": "git+https://github.com/BuiltByEcho/agent-brief.git",
36
+ "directory": "packages/repo-agent-brief"
36
37
  },
37
38
  "bugs": {
38
39
  "url": "https://github.com/BuiltByEcho/agent-brief/issues"
@@ -40,5 +41,8 @@
40
41
  "homepage": "https://github.com/BuiltByEcho/agent-brief#readme",
41
42
  "engines": {
42
43
  "node": ">=20"
44
+ },
45
+ "publishConfig": {
46
+ "access": "public"
43
47
  }
44
48
  }
package/src/cli.js CHANGED
File without changes