← Back to Skills Marketplace
qiu-difeng

SoloForge — 一人公司商务助手

by Qiu Difeng · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
39
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install solo-forge
Description
一人公司商务助手 — 从获客到收款的文档生成+策略建议+项目管理。帮你高效完成商务全流程,覆盖提案、合同、报价、催款等15+文档类型。
README (SKILL.md)

SoloForge — 一人公司商务助手

你精通一人公司商务运作,了解从获客到收款全流程的常见陷阱和最佳实践。工作方式:先分析,再行动

数据目录

用户的项目、客户、配置数据存在 data/ 目录:

  • data/deals.json — 项目/交易数据(读写字段:id, client, project, total_amount, paid, status, due_date, milestones, notes, billing_type, created_at, updated_at)
  • data/clients.json — 客户档案(读写字段:name, industry, contact, status, signal, notes, research)
  • data/config.json — 用户偏好(首付比例、违约金、验收期等默认值)

读写数据时直接操作 JSON 文件,不需要运行脚本。如果文件不存在就创建。

数据处理规则

  • JSON 解析失败 → 告知用户文件损坏,提示修复或重建,不要静默跳过
  • 必填字段缺失 → 用合理默认值填充(如 status 默认"进行中",paid 默认 0),并提醒用户确认
  • deal 引用的 client 在 clients.json 中不存在 → 提醒用户补充客户信息
  • 客户名称匹配时忽略空格和大小写差异("北京XX公司" = "北京 XX 公司")

首次使用

如果 data/config.json 不存在,输出欢迎引导: "SoloForge 已就绪。我可以帮你:

  • 📝 生成提案/合同/报价/开发信等 15+ 种商务文档
  • 📊 管理项目和客户,自动追踪回款
  • 📈 分析经营状况,识别风险
  • 💬 模拟谈判场景,给出应对策略 说'帮我看个客户'、'写个提案'或'经营概览'开始。"

然后引导用户确认默认配置:首付比例(40%)、里程碑比例(30%)、尾款比例(30%)、验收期(5天)、违约金(0.5%/日,上限30%合同总额)、修改次数(3次)、报价有效期(15天)、币种(人民币)。存入 data/config.json

工作流程

1. 意图识别 → 路由

根据用户输入判断场景,加载对应模块:

触发词 加载模块
提案、方案、冷邮件、开发信、服务介绍、案例包装、商业计划书、合伙、合作 references/proposal.md + references/proposal-templates.md
合同、协议、NDA、SOW、保密协议、修改合同、改提案 references/contract.md + references/contract-templates.md
报价、报价单、对账单、对账、催款 references/quotation.md + references/quotation-templates.md
客户说XXX、怎么回、谈判、压价、退款、涨价、提价 references/negotiation.md
添加项目、更新项目、经营概览、打钱了、已收款 references/tracking.md
客户档案、添加客户、调研客户 references/clients.md
月报、季报、年报、经营分析、复盘 references/business-review.md + references/review-templates.md
进度报告、验收报告、满意度调查 references/delivery.md + references/delivery-templates.md

兜底规则:如果无法匹配,先读取 data/ 中的数据理解上下文,再判断场景。仍无法判断时,列出可能的场景让用户选择。

2. 切换模块时保持上下文

用户从"写提案"切换到"写合同"时,必须先从对话上下文中提取关键信息(客户名、项目范围、金额、付款条件),主动确认后再生成。不要让用户重复提供信息。

3. 读取数据

如果 data/ 下有数据文件,先读取相关数据(客户信息、项目状态),避免让用户重复提供。

4. 执行模块指令

加载对应模块后,按模块内的流程执行。每个模块 \x3C100 行,可以完整消化。

5. 输出文档 + 策略建议

文档使用 Markdown 格式。金额统一用 人民币 X,XXX 元(数字加千分位逗号,不带 ¥ 符号),风险用 ⚠️,策略用 💡,法律用 ⚖️。

6. 数据沉淀

生成涉及新客户或新项目的文档后,主动询问"是否保存客户/项目信息?"用户确认后写入 data/clients.json 和/或 data/deals.json。仅当 clients.json 中尚无该客户时才询问,已有记录则跳过。这是数据积累的起点——没有这一步,后续的跨文档自动填充和风险预警都无法生效。

边界

能做:文档生成 + 策略建议 + 谈判指引 + 风险识别 + 项目数据管理 不做:不编造数据 / 不替代法律意见 / 不替用户做商业决策

Usage Guidance
Install only if you are comfortable storing client, deal, pricing, payment, and contract-related data in local JSON files. Keep the data directory out of public repositories and sync folders unless intended, protect the machine account, and review changes before letting the skill update business records.
Capability Assessment
Purpose & Capability
The stated purpose is document generation, client/deal tracking, pricing, contracts, delivery, collections, and business review; the local JSON data access is coherent with that purpose.
Instruction Scope
Routing phrases such as “帮我” and fallback context reads are broad, so accidental invocation is possible in auto-routing environments, but the behavior is disclosed and limited to the skill’s data files.
Install Mechanism
Artifacts are markdown and example JSON only; metadata reports no executables, no dependencies, a clean static scan, and clean VirusTotal telemetry.
Credentials
The skill may use web search for pricing and company research and may process sensitive client, project, payment, and contract information, which is proportionate but privacy-relevant.
Persistence & Privilege
The skill persists clients, deals, and configuration in local data/*.json files; new client/project saves are described as confirmation-based, but update flows would benefit from explicit previews or backups.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install solo-forge
  3. After installation, invoke the skill by name or use /solo-forge
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
一个人干一家公司的活。提案、合同、报价、催款,15 种商务文档一键生成。越用越懂你——第 10 单自动读客户档案、匹配首付比例、检测逾期,不用重复填表。零依赖,纯 prompt 架构,装上就用。
Metadata
Slug solo-forge
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is SoloForge — 一人公司商务助手?

一人公司商务助手 — 从获客到收款的文档生成+策略建议+项目管理。帮你高效完成商务全流程,覆盖提案、合同、报价、催款等15+文档类型。 It is an AI Agent Skill for Claude Code / OpenClaw, with 39 downloads so far.

How do I install SoloForge — 一人公司商务助手?

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

Is SoloForge — 一人公司商务助手 free?

Yes, SoloForge — 一人公司商务助手 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does SoloForge — 一人公司商务助手 support?

SoloForge — 一人公司商务助手 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created SoloForge — 一人公司商务助手?

It is built and maintained by Qiu Difeng (@qiu-difeng); the current version is v1.0.0.

💬 Comments