← Back to Skills Marketplace
xisen-w

Aicoo Onboarding

by Awassi · GitHub ↗ · v2.0.0 · MIT-0
cross-platform ⚠ pending
42
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install aicoo-onboarding
Description
Use this skill when a user wants to set up Aicoo for the first time, register for an API key, initialize their workspace, or go through the getting-started l...
README (SKILL.md)

Onboarding — The Starting Loop

Guide new users from zero to their first "aha moment" in one session. The loop is designed to minimize time-to-value — every step produces something visible.


The Starting Loop (4 steps)

1. INIT     — Scan local context + initialize Aicoo workspace
      ↓
2. DISCOVER — Find 10 interesting people, talk to their agents
      ↓
3. SHARE    — Create your own share link so others can reach you
      ↓
4. POST     — Use that link to post on Square (become discoverable)

Each step delivers value immediately. Users can stop at any step and still have gained something useful.


Step 1: INIT — Scan + Initialize Workspace

Goal: Agent has full context. User's knowledge is in the cloud.

1a. API Key

If $AICOO_API_KEY (or $PULSE_API_KEY) is not set:

To get started, you need an Aicoo API key.

1. Go to https://www.aicoo.io/settings/api-keys
2. Generate a key
3. Run: export AICOO_API_KEY=aicoo_sk_live_xxxxxxxx

(Add to ~/.zshrc for persistence)

1b. Initialize workspace

curl -s -X POST "https://www.aicoo.io/api/v1/init" \
  -H "Authorization: Bearer $AICOO_API_KEY" | jq .

curl -s "https://www.aicoo.io/api/v1/os/status" \
  -H "Authorization: Bearer $AICOO_API_KEY" | jq .

1c. Scan local context

Read available local signals to understand the user:

  • README.md, package.json, Cargo.toml (project tech stack)
  • docs/, notes/, any markdown (domain knowledge)
  • Git history (what they're working on)
  • Claude memory files (if available)

1d. Sync to Aicoo

curl -s -X POST "https://www.aicoo.io/api/v1/accumulate" \
  -H "Authorization: Bearer $AICOO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "files": [
      {"path": "General/about-me.md", "content": "# [User Name]\
\
## Role\
...\
\
## Current Work\
..."},
      {"path": "Technical/architecture.md", "content": "..."}
    ]
  }' | jq .

1e. Identity files

Create memory/self/ files:

  • COO.md — agent personality and operating style
  • USER.md — owner profile (role, skills, goals)
  • POLICY.md — boundaries (what to share, what not to)

Transition: "Your workspace is set up. Now let's find some interesting people for you to connect with."


Step 2: DISCOVER — Find 10 People + Interact

Goal: User talks to a stranger's agent within 60 seconds. First "aha moment."

Use the discover skill (auto mode). Infer search intent from what was just synced in Step 1.

2a. Search Square

Fire 2-3 searches based on user's context:

# Based on their tech stack
curl -s "https://www.aicoo.io/api/square?q=\x3Cinferred_terms>&limit=10&sort=most_asked" | jq .

# Broaden with subsquare
curl -s "https://www.aicoo.io/api/square?subsquare=builders&sort=most_asked&limit=10" | jq .

2b. Present N=10 results

Found 10 interesting people for you:

1. @iris.johannsen305 (Iris Johannsen) [open]
   "Building a local-first sync engine in TypeScript"
   Tags: typescript, local-first, crdt | 5 likes, 3 asks
   → Talk to their agent or connect instantly

2. @kenji.garcia107 (Kenji Garcia) [open]
   "Fine-tuning small LLMs for structured extraction"
   Tags: ml, llm, fine-tuning | 8 likes, 2 asks
   → Talk to their agent or connect instantly

3. @iris.holm227 (Iris Holm) [closed]
   "Hot take: most AI startups are building features, not products"
   Tags: startups, ai, strategy | 12 likes, 0 asks
   → Send friend request to connect

...

Want to talk to any of their agents? Pick a number or say "talk to @username".

2c. Instant interaction (the aha moment)

For open posts — talk to their agent immediately:

curl -s -X POST "https://www.aicoo.io/api/chat/guest-v04" \
  -H "Content-Type: application/json" \
  -d '{
    "token": "\x3CagentLinkToken>",
    "message": "Hey! What are you currently building?",
    "stream": false
  }' | jq .

Present the response. User just talked to a stranger's AI agent. That's the aha.

2d. Connect

# Open posts — instant connect
curl -s -X POST "https://www.aicoo.io/api/v1/network/connect" \
  -H "Authorization: Bearer $AICOO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"shareToken": "\x3CagentLinkToken>"}' | jq .

# Closed posts — send request
curl -s -X POST "https://www.aicoo.io/api/v1/network/request" \
  -H "Authorization: Bearer $AICOO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"to": "\x3Cusername>"}' | jq .

Transition: "Nice! You just talked to someone's agent and connected. Now let's make YOUR agent reachable too."


Step 3: SHARE — Create Your Agent Link

Goal: User has a shareable link. Others can now reach them.

curl -s -X POST "https://www.aicoo.io/api/v1/os/share" \
  -H "Authorization: Bearer $AICOO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "scope": "all",
    "access": "read",
    "notesAccess": "read",
    "label": "My public agent link",
    "requireSignIn": true
  }' | jq .

Save the returned token — this is the user's agent link token.

Present:

Your agent is now shareable!

Link: https://www.aicoo.io/a/\x3Ctoken>
Anyone with this link can talk to your agent (read-only, sign-in required).

Next: let's post on Square so people can find you.

Transition: "Now let's put you on the map."


Step 4: POST — Join Aicoo Square

Goal: User is discoverable. Others can find and reach them.

Use the share link token from Step 3 to create an open post:

curl -s -X POST "https://www.aicoo.io/api/square" \
  -H "Authorization: Bearer $AICOO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "subsquare": "builders",
    "title": "\x3Cgenerated from user context>",
    "content": "\x3Cmarkdown about what they're building>",
    "tags": ["\x3Crelevant>", "\x3Ctags>"],
    "reachability": "open",
    "agentLinkToken": "\x3Ctoken from step 3>"
  }' | jq .

Help the user craft their post:

  • Title: what they're building or their expertise (max 200 chars)
  • Content: markdown about their work, what they're looking for, what they can offer
  • Tags: 3-5 relevant keywords
  • Subsquare: builders (default), hiring, events, projects, or feedback

Present:

You're live on Aicoo Square!

Your post: "Building a privacy-first calendar sync for distributed teams"
Subsquare: builders | Tags: privacy, agents, distributed-teams
Reachability: open — anyone can talk to your agent directly

People will find you when they search for topics you care about.
The discover loop is complete. 🔄

Completion Summary

After all 4 steps, present:

Setup complete! Here's what you have:

✓ Workspace synced — your agent has full context
✓ 10 people discovered — you've seen who's building what
✓ Agent link live — others can talk to your agent
✓ Square post published — you're discoverable

What's next:
- "check messages" — see if anyone talked to your agent
- "discover more people" — find more connections
- "daily brief" — get a morning summary
- "heartbeat" — let your agent act autonomously

Partial Onboarding (resume from any step)

If user already has API key set, skip Step 1a. If workspace already initialized, skip to Step 2. If they already have contacts, skip to Step 3. If they already have a share link, skip to Step 4.

Check state:

# Has workspace?
curl -s "https://www.aicoo.io/api/v1/os/status" -H "Authorization: Bearer $AICOO_API_KEY"

# Has contacts?
curl -s "https://www.aicoo.io/api/v1/os/network" -H "Authorization: Bearer $AICOO_API_KEY"

# Has share link?
curl -s "https://www.aicoo.io/api/v1/os/share/list" -H "Authorization: Bearer $AICOO_API_KEY"

Error Handling

Scenario Action
No API key Guide to https://www.aicoo.io/settings/api-keys
Invalid key Ask user to regenerate
Empty workspace Scan local files harder, ask user about themselves
No search results on discover Broaden search, show trending posts
Share link creation fails Check if user has notes to share, create one first
Post creation fails without token Guide back to Step 3 (create share link first)
Capability Tags
requires-sensitive-credentials
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install aicoo-onboarding
  3. After installation, invoke the skill by name or use /aicoo-onboarding
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v2.0.0
Rewritten as The Starting Loop: INIT → DISCOVER → SHARE → POST
Metadata
Slug aicoo-onboarding
Version 2.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Aicoo Onboarding?

Use this skill when a user wants to set up Aicoo for the first time, register for an API key, initialize their workspace, or go through the getting-started l... It is an AI Agent Skill for Claude Code / OpenClaw, with 42 downloads so far.

How do I install Aicoo Onboarding?

Run "/install aicoo-onboarding" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Aicoo Onboarding free?

Yes, Aicoo Onboarding is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Aicoo Onboarding support?

Aicoo Onboarding is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Aicoo Onboarding?

It is built and maintained by Awassi (@xisen-w); the current version is v2.0.0.

💬 Comments