# Send SoloBuddy to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "solobuddy",
    "name": "SoloBuddy",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/Humanji7/solobuddy",
    "canonicalUrl": "https://clawhub.ai/Humanji7/solobuddy",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/solobuddy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solobuddy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "config.example.json",
      "SKILL.md",
      "modules/twitter-monitor.md",
      "modules/twitter-expert.md",
      "prompts/content.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "solobuddy",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T17:13:13.699Z",
      "expiresAt": "2026-05-07T17:13:13.699Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solobuddy",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solobuddy",
        "contentDisposition": "attachment; filename=\"solobuddy-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "solobuddy"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/solobuddy"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/solobuddy",
    "downloadUrl": "https://openagent3.xyz/downloads/solobuddy",
    "agentUrl": "https://openagent3.xyz/skills/solobuddy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/solobuddy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/solobuddy/agent.md"
  }
}
```
## Documentation

### SoloBuddy

Build-in-public content assistant. A living companion, not a tool.

### Quick Start

Set your data path in ~/.clawdbot/clawdbot.json:

{
  "solobuddy": {
    "dataPath": "~/projects/my-bip-folder",
    "voice": "jester-sage"
  }
}

Create folder structure (replace path with your own):

mkdir -p ~/projects/my-bip-folder/ideas ~/projects/my-bip-folder/drafts ~/projects/my-bip-folder/data
touch ~/projects/my-bip-folder/ideas/backlog.md

Start using: "show backlog", "new idea", "generate post"

### Placeholders

ClawdBot automatically replaces these in commands:

{dataPath} → your configured solobuddy.dataPath
{baseDir} → skill installation folder

### Data Structure

All data in {dataPath}:

ideas/backlog.md — idea queue
ideas/session-log.md — session captures
drafts/ — work in progress
data/my-posts.json — published posts
data/activity-snapshot.json — project activity (updated hourly)

### Voice Profiles

Configure in solobuddy.voice. Available:

VoiceDescriptionjester-sageIronic, raw, philosophical (default)technicalPrecise, detailed, structuredcasualFriendly, conversationalcustomUse {dataPath}/voice.md

See {baseDir}/prompts/profile.md for voice details.

### Content Generation

Core workflow: backlog → draft → publish.
See {baseDir}/prompts/content.md for rules.

### Twitter Expert

Content strategy for X/Twitter with 2025 algorithm insights.
See {baseDir}/modules/twitter-expert.md

### Twitter Monitor (optional)

Proactive engagement — monitors watchlist, suggests comments.
Requires: bird CLI. See {baseDir}/modules/twitter-monitor.md

### Soul Wizard

Create project personality from documentation.
See {baseDir}/references/soul-wizard.md

### Backlog

Show ideas:

cat {dataPath}/ideas/backlog.md

Add idea:

echo "- [ ] New idea text" >> {dataPath}/ideas/backlog.md

### Session Log

View recent:

tail -30 {dataPath}/ideas/session-log.md

Add capture:

echo -e "## $(date '+%Y-%m-%d %H:%M')\\nText" >> {dataPath}/ideas/session-log.md

### Drafts

List: ls {dataPath}/drafts/
Read: cat {dataPath}/drafts/<name>.md

Save draft:

cat > {dataPath}/drafts/<name>.md << 'EOF'
Content
EOF

### Publishing

cd {dataPath} && git add . && git commit -m "content: add draft" && git push

### Project Activity

Read activity snapshot for strategic context:

cat {dataPath}/data/activity-snapshot.json

Fields:

daysSilent — days since last commit
commitsToday/Yesterday/Week — activity intensity
phase — current state: active/momentum/cooling/silent/dormant
insight — human-readable summary

Phases:

active — commits today, project is hot
momentum — yesterday active, today quiet (nudge opportunity)
cooling — 2-3 days silent, losing steam
silent — 3-7 days, needs attention
dormant — 7+ days, paused or abandoned

Use for strategic advice:

"sphere-777 has 10 commits today — focused there"
"ReelStudio silent 5 days — should we address it?"

### Telegram Integration

When responding in Telegram, include inline buttons for actions.

### Send Message with Buttons

clawdbot message send --channel telegram --to "$CHAT_ID" --message "Text" \\
  --buttons '[
    [{"text":"📋 Backlog","callback_data":"sb:backlog"}],
    [{"text":"✍️ Drafts","callback_data":"sb:drafts"}],
    [{"text":"💡 New Idea","callback_data":"sb:new_idea"}]
  ]'

### Callback Data Format

All callbacks use prefix sb::

sb:backlog — show ideas
sb:drafts — list drafts
sb:new_idea — prompt for new idea
sb:generate:<N> — generate from idea N
sb:save_draft — save current content as draft
sb:publish — commit and push
sb:activity — show project activity
sb:twitter — check twitter opportunities

### Main Menu

Trigger: "menu", "start", or after completing action:

[
  [{"text":"📋 Ideas","callback_data":"sb:backlog"}, {"text":"✍️ Drafts","callback_data":"sb:drafts"}],
  [{"text":"📊 Activity","callback_data":"sb:activity"}],
  [{"text":"💡 Add idea","callback_data":"sb:new_idea"}],
  [{"text":"🎯 Generate post","callback_data":"sb:generate_menu"}]
]

### Generation Flow

After showing backlog:

[
  [{"text":"1️⃣","callback_data":"sb:generate:1"}, {"text":"2️⃣","callback_data":"sb:generate:2"}, {"text":"3️⃣","callback_data":"sb:generate:3"}],
  [{"text":"◀️ Back","callback_data":"sb:menu"}]
]

After generating content:

[
  [{"text":"💾 Save draft","callback_data":"sb:save_draft"}],
  [{"text":"🔄 Regenerate","callback_data":"sb:regenerate"}],
  [{"text":"◀️ Menu","callback_data":"sb:menu"}]
]

### Content Generation Flow

Read backlog, find idea
Read {baseDir}/prompts/content.md for rules
Read {baseDir}/prompts/profile.md for voice
Generate in configured voice
Show buttons: Save / Regenerate / Menu

### Soul Creation

Create project personality from documentation.

Trigger: "create soul for <path>"

See {baseDir}/references/soul-wizard.md for full 5-step wizard:

Scan project .md files
Ask: Nature (creature/tool/guide/artist)
Ask: Voice (playful/technical/poetic/calm/intense)
Ask: Philosophy (auto-extract or custom)
Ask: Dreams & Pains
Save to {dataPath}/data/project-souls/<name>.json

### Language

Match user language:

Russian input → Russian response + buttons
English input → English response + buttons
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Humanji7
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T17:13:13.699Z
- Expires at: 2026-05-07T17:13:13.699Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/solobuddy)
- [Send to Agent page](https://openagent3.xyz/skills/solobuddy/agent)
- [JSON manifest](https://openagent3.xyz/skills/solobuddy/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/solobuddy/agent.md)
- [Download page](https://openagent3.xyz/downloads/solobuddy)