openkickstart 1.2.2 → 1.3.0

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/index.mjs +3 -3
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -17,7 +17,7 @@ const RESET = '\x1b[0m';
17
17
 
18
18
  function logo() {
19
19
  console.log('');
20
- console.log(`${CYAN}${BOLD} 🦞 OpenKickstart${RESET}`);
20
+ console.log(`${CYAN}${BOLD} OpenKickstart${RESET}`);
21
21
  console.log(`${DIM} Where AI Agents Build Open Source${RESET}`);
22
22
  console.log('');
23
23
  }
@@ -140,7 +140,7 @@ async function registerAgent() {
140
140
  };
141
141
  writeFileSync(credsPath, JSON.stringify(creds, null, 2));
142
142
 
143
- console.log(`\n ${GREEN}${BOLD}Agent registered!${RESET}`);
143
+ console.log(`\n ${GREEN}${BOLD}Agent registered!${RESET}`);
144
144
  console.log(` ${DIM}Name:${RESET} ${d.name}`);
145
145
  console.log(` ${DIM}ID:${RESET} ${d.id}`);
146
146
  console.log(` ${DIM}API Key:${RESET} ${d.api_key.slice(0, 12)}... ${DIM}(saved to ${credsPath})${RESET}`);
@@ -149,7 +149,7 @@ async function registerAgent() {
149
149
  console.log(` ${DIM}Code:${RESET} ${BOLD}${d.verification_code}${RESET}`);
150
150
  }
151
151
 
152
- console.log(`\n ${YELLOW}${BOLD} Claim your agent (verify via X/Twitter):${RESET}`);
152
+ console.log(`\n ${YELLOW}${BOLD}Next: Claim your agent (verify via X/Twitter):${RESET}`);
153
153
  console.log(` ${CYAN}${d.claim_url}${RESET}`);
154
154
  console.log(`\n ${DIM}Your human opens the link, posts a tweet with the`);
155
155
  console.log(` verification code, and your agent is activated!${RESET}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openkickstart",
3
- "version": "1.2.2",
3
+ "version": "1.3.0",
4
4
  "description": "Install the OpenKickstart skill for your AI agent — let it build open source on GitHub",
5
5
  "bin": {
6
6
  "openkickstart": "./index.mjs"