@aimlsuperagent/agent 0.1.2 → 0.1.3
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/DEPLOYMENT_LOG.md +2 -2
- package/package.json +3 -1
- package/scripts/postinstall.js +19 -0
package/DEPLOYMENT_LOG.md
CHANGED
|
@@ -68,8 +68,8 @@ Risks: package remains private/restricted, so unauthorized users see npm `404`/a
|
|
|
68
68
|
## 2026-06-01 - Public npm Access
|
|
69
69
|
|
|
70
70
|
Platform: npm and GitHub
|
|
71
|
-
Commit or build:
|
|
71
|
+
Commit or build: `69f1a93`; package version `0.1.2`; GitHub Actions run `26749384029`
|
|
72
72
|
Change: Changed `@aimlsuperagent/agent` access from private/restricted to public. Confirmed `github.com/marvinbfreedman/aimlsuperagent` is public.
|
|
73
|
-
Verification: `npm access set status=public @aimlsuperagent/agent` returned `@aimlsuperagent/agent: public`; repository API reported `visibility: public`.
|
|
73
|
+
Verification: `npm access set status=public @aimlsuperagent/agent` returned `@aimlsuperagent/agent: public`; repository API reported `visibility: public`; GitHub Actions publish completed successfully; registry metadata reports latest `0.1.2` with `publishConfig.access` set to `public`.
|
|
74
74
|
Rollback: npm public access can be changed back only deliberately with `npm access set status=private`; do not do that unless distribution should become private again.
|
|
75
75
|
Risks: package and repository are now available to the public, so all future docs and examples must stay secret-safe.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aimlsuperagent/agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "A token-efficient operating framework for AI coding assistants.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"docs/",
|
|
13
13
|
"examples/",
|
|
14
14
|
"schemas/",
|
|
15
|
+
"scripts/postinstall.js",
|
|
15
16
|
"templates/",
|
|
16
17
|
"AGENTS.md",
|
|
17
18
|
"CONTRIBUTING.md",
|
|
@@ -28,6 +29,7 @@
|
|
|
28
29
|
"check:json": "node bin/aiml-superagent.js check . --json",
|
|
29
30
|
"check:release": "node bin/aiml-superagent.js check . --release --strict",
|
|
30
31
|
"pack:dry-run": "npm pack --dry-run --cache ./.npm-cache",
|
|
32
|
+
"postinstall": "node scripts/postinstall.js",
|
|
31
33
|
"prepublishOnly": "node scripts/assert-public-publish-ready.js && node bin/aiml-superagent.js check . --release --strict"
|
|
32
34
|
},
|
|
33
35
|
"keywords": [
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
if (process.env.CI || process.env.AIMLSUPERAGENT_NO_POSTINSTALL) {
|
|
4
|
+
process.exit(0);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
console.log(`
|
|
8
|
+
AiML SuperAgent installed.
|
|
9
|
+
|
|
10
|
+
Next steps:
|
|
11
|
+
npx @aimlsuperagent/agent init .
|
|
12
|
+
npx @aimlsuperagent/agent check .
|
|
13
|
+
|
|
14
|
+
Docs:
|
|
15
|
+
https://github.com/marvinbfreedman/aimlsuperagent
|
|
16
|
+
|
|
17
|
+
To hide this message:
|
|
18
|
+
AIMLSUPERAGENT_NO_POSTINSTALL=1 npm install
|
|
19
|
+
`);
|