skills$openclaw/solobuddy
humanji75.8k

by humanji7

solobuddy – OpenClaw Skill

solobuddy is an OpenClaw Skills integration for writing workflows. Build-in-public companion for indie hackers — content workflow, Twitter engagement, project soul creation. A living assistant, not a tool.

5.8k stars2.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

namesolobuddy
descriptionBuild-in-public companion for indie hackers — content workflow, Twitter engagement, project soul creation. A living assistant, not a tool. OpenClaw Skills integration.
ownerhumanji7
repositoryhumanji7/solobuddy
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @humanji7/solobuddy
last updatedFeb 7, 2026

Maintainer

humanji7

humanji7

Maintains solobuddy in the OpenClaw Skills directory.

View GitHub profile
File Explorer
13 files
.
modules
twitter-expert.md
4.2 KB
twitter-monitor.md
3.3 KB
prompts
content.md
1.8 KB
profile.md
3.0 KB
system.md
1.6 KB
references
soul-wizard.md
3.8 KB
_meta.json
272 B
config.example.json
269 B
README.md
2.4 KB
SKILL.md
5.9 KB
SKILL.md

name: solobuddy description: Build-in-public companion for indie hackers — content workflow, Twitter engagement, project soul creation. A living assistant, not a tool. homepage: https://github.com/gHashTag/bip-buddy metadata: {"clawdbot":{"emoji":"🎯","requires":{"bins":["gh"],"optional":["bird"]},"config":["solobuddy.dataPath","solobuddy.voice"]}}

SoloBuddy

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

Quick Start

  1. Set your data path in ~/.clawdbot/clawdbot.json:
{
  "solobuddy": {
    "dataPath": "~/projects/my-bip-folder",
    "voice": "jester-sage"
  }
}
  1. 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
  1. 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:

VoiceDescription
jester-sageIronic, raw, philosophical (default)
technicalPrecise, detailed, structured
casualFriendly, conversational
customUse {dataPath}/voice.md

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

Modules

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

Commands

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"}]
  ]'

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

  1. Read backlog, find idea
  2. Read {baseDir}/prompts/content.md for rules
  3. Read {baseDir}/prompts/profile.md for voice
  4. Generate in configured voice
  5. 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:

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

Language

Match user language:

  • Russian input → Russian response + buttons
  • English input → English response + buttons
README.md

SoloBuddy

Build-in-public companion for indie hackers

A living assistant, not a tool. SoloBuddy helps you maintain a consistent build-in-public presence without the cognitive overhead.

What It Does

  • Content Workflow: Idea backlog → Draft → Publish
  • Twitter Expert: 2025 algorithm insights, hook formulas, engagement optimization
  • Twitter Monitor: Proactive engagement opportunities from your watchlist
  • Soul Wizard: Create project personalities from documentation
  • Activity Tracking: Know which projects need attention

Install

npx clawdhub@latest install solobuddy

Quick Setup

  1. Configure in ~/.clawdbot/clawdbot.json:
{
  "solobuddy": {
    "dataPath": "~/projects/my-build-in-public",
    "voice": "jester-sage"
  }
}
  1. Create folder structure (use the same path as in config):
mkdir -p ~/projects/my-build-in-public/ideas ~/projects/my-build-in-public/drafts ~/projects/my-build-in-public/data
touch ~/projects/my-build-in-public/ideas/backlog.md
  1. Start chatting: "show backlog", "new idea", "generate post"

Voice Profiles

VoiceStyle
jester-sageIronic, raw, philosophical (default)
technicalPrecise, detailed, structured
casualFriendly, conversational
customYour own voice.md file

Modules

Core

  • Backlog management
  • Draft creation
  • Publishing flow
  • Session logging

Twitter Expert

Content strategy with:

  • 5 proven hook formulas
  • 2025 algorithm insights
  • Quality checklist
  • Anti-pattern detection

Twitter Monitor (optional)

Requires bird CLI:

  • Watchlist monitoring
  • Engagement opportunities
  • Draft comments with reasoning

Soul Wizard

Interactive creation of project personalities:

  • Nature (creature/tool/guide/artist)
  • Voice attributes
  • Philosophy extraction
  • Dreams & pains

Telegram Integration

Full button support for mobile workflow:

  • Quick navigation
  • One-tap generation
  • Draft management

Requirements

  • Required: gh (GitHub CLI)
  • Optional: bird (Twitter CLI for monitoring)

Philosophy

"A quiet companion, not a dashboard"

SoloBuddy notices patterns, asks questions, and connects ideas across projects. It's designed to reduce cognitive load while keeping you in control.

Links

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install solobuddy?

Run openclaw add @humanji7/solobuddy in your terminal. This installs solobuddy into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/humanji7/solobuddy. Review commits and README documentation before installing.