create-agent 0.0.12 → 0.0.13
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/bin/create-agent.js +9 -0
- package/package.json +1 -1
- package/.claude/settings.local.json +0 -25
package/bin/create-agent.js
CHANGED
|
@@ -35,3 +35,12 @@ process.stderr.write('\x1b[36m📄 DID Nostr Document:\x1b[0m\n');
|
|
|
35
35
|
process.stderr.write('\x1b[36m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\x1b[0m\n');
|
|
36
36
|
console.log(JSON.stringify(did, null, 2));
|
|
37
37
|
process.stderr.write('\x1b[36m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\x1b[0m\n');
|
|
38
|
+
|
|
39
|
+
// Suggest next steps with aam
|
|
40
|
+
process.stderr.write('\n');
|
|
41
|
+
process.stderr.write('\x1b[36m🚀 Next Steps:\x1b[0m\n');
|
|
42
|
+
process.stderr.write('\x1b[36m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\x1b[0m\n');
|
|
43
|
+
process.stderr.write('\x1b[0m- Install the Agentic App Manager: \x1b[33mnpm install -g aam\x1b[0m\n');
|
|
44
|
+
process.stderr.write('\x1b[0m- Add skills to your agent: \x1b[33maam skills anthropics/skills\x1b[0m\n');
|
|
45
|
+
process.stderr.write('\x1b[0m- Browse the registry: \x1b[33mhttps://aam.wtf\x1b[0m\n');
|
|
46
|
+
process.stderr.write('\n');
|
package/package.json
CHANGED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"permissions": {
|
|
3
|
-
"allow": [
|
|
4
|
-
"Bash(tree:*)",
|
|
5
|
-
"Bash(git checkout:*)",
|
|
6
|
-
"Bash(git add:*)",
|
|
7
|
-
"Bash(git commit:*)",
|
|
8
|
-
"Bash(node -e:*)",
|
|
9
|
-
"Bash(npm test)",
|
|
10
|
-
"Bash(git pull:*)",
|
|
11
|
-
"Bash(gh pr list:*)",
|
|
12
|
-
"Bash(gh issue list:*)",
|
|
13
|
-
"WebFetch(domain:nostrcg.github.io)",
|
|
14
|
-
"Bash(node bin/create-agent.js:*)",
|
|
15
|
-
"WebSearch",
|
|
16
|
-
"Bash(gh issue view:*)",
|
|
17
|
-
"Bash(gh api:*)",
|
|
18
|
-
"WebFetch(domain:ai-sdk.dev)",
|
|
19
|
-
"WebFetch(domain:github.com)",
|
|
20
|
-
"Bash(git fetch:*)",
|
|
21
|
-
"Bash(gh repo fork:*)",
|
|
22
|
-
"Bash(node /home/melvin/agi/create-agent/bin/create-agent.js:*)"
|
|
23
|
-
]
|
|
24
|
-
}
|
|
25
|
-
}
|