openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Solopreneur

Solo business management with dashboard, pipeline tracking, invoicing, and weekly reviews. Use when user mentions solo business, clients, revenue, pipeline,...

开发与 DevOps

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v2.0.0

统计:⭐ 0 · 219 · 1 current installs · 1 all-time installs

0

安装量(当前) 1

🛡 VirusTotal :良性 · OpenClaw :可疑

Package:agistack/solopreneur

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :可疑

OpenClaw 评估

The skill claims a full solo-business suite (pipeline, invoicing, reviews) but the package only contains a read-only dashboard script and references many missing scripts and docs — the implementation is incomplete and inconsistent with its claims.

目的

The description promises dashboard, pipeline tracking, invoicing, prioritization, and weekly reviews. The repository only includes scripts/dashboard.py. SKILL.md references many other scripts (add_prospect.py, draft_invoice.py, prioritize.py, weekly_review.py, etc.) and reference files that are not present. The single included file implements only a read-only dashboard view; it cannot fulfill invoicing, pipeline mutation, or review workflows a…

说明范围

Runtime instructions instruct the agent to run multiple scripts and store data under memory/solopreneur/. The included dashboard.py reads from ~/.openclaw/workspace/memory/solopreneur/dashboard.json and performs only local reads/prints (no network or credential access). However most runtime actions (adding prospects, drafting invoices, prioritizing) refer to scripts that are missing, so the SKILL.md's operational instructions are not implement…

安装机制

No install spec is provided and this is predominantly instruction-only with a single small Python script. That reduces install-time risk: nothing is downloaded or extracted by the skill itself.

证书

The skill declares no required environment variables or credentials. The included script does not access environment variables or network resources. Requested permissions are proportionate to the stated local-data behavior.

持久

always is false and disable-model-invocation is not set — normal defaults. The skill does not request persistent platform-level privileges and the provided code does not change other skills or global settings.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Solopreneur」。简介:Solo business management with dashboard, pipeline tracking, invoicing, and week…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/agistack/solopreneur/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: solopreneur
description: Solo business management with dashboard, pipeline tracking, invoicing, and weekly reviews. Use when user mentions solo business, clients, revenue, pipeline, invoices, or priorities. Produces business dashboard, tracks prospects from lead to close, drafts invoices, prioritizes actions, and runs weekly business reviews. All business data stays private and local.
---

# Solopreneur

Solo business system. Run like a company of one.

## Critical Privacy & Safety

### Data Storage (CRITICAL)
- **All business data stored locally only**: `memory/solopreneur/`
- **Client information protected** - no external sharing
- **No cloud accounting** integration
- **No payment processing** through this skill
- User controls all data retention and deletion

### Safety Boundaries
- ✅ Track business dashboard and metrics
- ✅ Manage pipeline and prospects
- ✅ Draft invoices and track payments
- ✅ Prioritize work and run weekly reviews
- ❌ **NEVER process payments**
- ❌ **NEVER file taxes**
- ❌ **NEVER replace** accountant or legal counsel

### Data Structure
Business data stored locally:
- `memory/solopreneur/dashboard.json` - Business metrics dashboard
- `memory/solopreneur/clients.json` - Client list and details
- `memory/solopreneur/pipeline.json` - Sales pipeline tracking
- `memory/solopreneur/invoices.json` - Invoice records
- `memory/solopreneur/reviews.json` - Weekly review history
- `memory/solopreneur/priorities.json` - Current priorities

## Core Workflows

### Check Dashboard
```
User: "How's my business doing?"
→ Use scripts/dashboard.py
→ Show clients, revenue YTD, pipeline, invoices outstanding, top priorities
```

### Track Pipeline
```
User: "Add new prospect to pipeline"
→ Use scripts/add_prospect.py --name "Acme Corp" --value 15000 --stage "proposal"
→ Track from lead through closed, alert if going cold
```

### Draft Invoice
```
User: "Draft invoice for the website project"
→ Use scripts/draft_invoice.py --client "XYZ Inc" --project "website" --amount 5000
→ Generate complete invoice with services, terms, due date
```

### Prioritize Work
```
User: "What should I focus on today?"
→ Use scripts/prioritize.py --time 4 --energy high
→ Review full situation, produce prioritized action list with time estimates
```

### Weekly Review
```
User: "Run my weekly business review"
→ Use scripts/weekly_review.py
→ Review revenue, pipeline, delivery, set top 3 priorities for next week
```

## Module Reference
- **Business Dashboard**: See [references/dashboard.md](references/dashboard.md)
- **Pipeline Management**: See [references/pipeline.md](references/pipeline.md)
- **Invoicing**: See [references/invoicing.md](references/invoicing.md)
- **Priority Setting**: See [references/priorities.md](references/priorities.md)
- **Weekly Reviews**: See [references/weekly-reviews.md](references/weekly-reviews.md)
- **Client Management**: See [references/clients.md](references/clients.md)

## Scripts Reference
| Script | Purpose |
|--------|---------|
| `dashboard.py` | Show business dashboard |
| `add_prospect.py` | Add prospect to pipeline |
| `draft_invoice.py` | Draft client invoice |
| `prioritize.py` | Prioritize daily work |
| `weekly_review.py` | Run weekly business review |
| `log_revenue.py` | Log revenue entry |
| `track_payment.py` | Track invoice payment |
| `set_goal.py` | Set business goals |