@builtbyecho/agent-brief 0.1.0 → 0.1.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.
- package/README.md +4 -0
- package/package.json +7 -3
- package/src/cli.js +0 -0
package/README.md
CHANGED
|
@@ -74,3 +74,7 @@ This is not a full secret scanner. It catches common token/private-key/secret-as
|
|
|
74
74
|
## License
|
|
75
75
|
|
|
76
76
|
MIT
|
|
77
|
+
|
|
78
|
+
## Release Automation
|
|
79
|
+
|
|
80
|
+
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,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@builtbyecho/agent-brief",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Generate concise, safety-aware project briefs for coding agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"agent-brief": "
|
|
7
|
+
"agent-brief": "src/cli.js"
|
|
8
8
|
},
|
|
9
9
|
"exports": {
|
|
10
10
|
".": "./src/index.js"
|
|
@@ -31,7 +31,8 @@
|
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
|
-
"url": "git+https://github.com/BuiltByEcho/agent-brief.git"
|
|
34
|
+
"url": "git+https://github.com/BuiltByEcho/agent-brief.git",
|
|
35
|
+
"directory": "packages/agent-brief"
|
|
35
36
|
},
|
|
36
37
|
"bugs": {
|
|
37
38
|
"url": "https://github.com/BuiltByEcho/agent-brief/issues"
|
|
@@ -39,5 +40,8 @@
|
|
|
39
40
|
"homepage": "https://github.com/BuiltByEcho/agent-brief#readme",
|
|
40
41
|
"engines": {
|
|
41
42
|
"node": ">=20"
|
|
43
|
+
},
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public"
|
|
42
46
|
}
|
|
43
47
|
}
|
package/src/cli.js
CHANGED
|
File without changes
|