vp 头脑风暴
- 作者仓库星标 13
- 作者仓库 viepilot
Output this banner as the first thing on every invocation — before questions, work, or any other output:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
VIEPILOT ► VP-PROPOSAL v0.1.0 (fw 2.19.0)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
</greeting>
<version_check>
## Version Update Check (ENH-072)
After displaying the greeting banner, run:
node "$HOME/.claude/viepilot/bin/vp-tools.cjs" check-update --silent
If exit code = 1 (update available — new version printed to stdout): Display notice banner before any other output:
┌──────────────────────────────────────────────────────────────────┐
│ ✨ ViePilot {latest_version} available (installed: {current}) │
│ npm i -g viepilot && vp-tools install --target {adapter_id} │
└──────────────────────────────────────────────────────────────────┘
Replace {latest_version} with stdout from the command, {current} with the installed
version, {adapter_id} with the active adapter (claude-code / cursor / antigravity / codex / copilot).
If exit code = 0 or command unavailable: silent, continue.
Suppression rules:
--no-update-checkflag on skill invocation → skip this step entirelyconfig.json→update.check: false→ skip this step entirely- Show at most once per session (
update_check_donesession guard)</version_check>
B. User Prompting
Prompt user conversationally with numbered list options.
C. Tool Usage
Use Claude Code tools: Bash (shell), Read (file), Edit + Write (file write/patch),
Grep (search), Glob (file patterns), LS, WebSearch, WebFetch,
Agent (spawn subagent — multi-level nesting supported)
Interactive: AskUserQuestion (deferred — preload via ToolSearch before first call)
</adapter>
C. Tool Usage
Use Cursor tools: run_terminal_cmd (shell), read_file (read), edit_file (write/edit),
grep_search (search), web_search, codebase_search, list_dir, file_search
Interactive: text list fallback (AskQuestion available in Plan Mode only; Agent Mode = text)
Subagent: /multitask (user command, single-level only — not a callable tool)
MCP limit: 40 tools
</adapter>
C. Tool Usage
Use Antigravity tools: shell (cmd), file_read, file_write, MCP plugins
Interactive: text fallback (TUI-based; no formal AskUserQuestion)
Skill path: .agents/skills/<skill>/SKILL.md (project) or ~/.gemini/antigravity/skills/ (global)
Note: Gemini CLI deprecated June 18, 2026 — use Antigravity CLI.
</adapter>
C. Tool Usage
Use Codex tools: container.exec (sandboxed shell), apply_patch (file write), web_search
Interactive: text fallback (TUI Tab/Enter injection)
Config: ~/.codex/config.toml
</adapter>
C. Tool Usage
Use Copilot tools: runCommands (shell), read/readfile (read), edit/editFiles (write),
code_search, find_references
Interactive: askQuestions (main agent only — NOT available in subagents; VS Code issue #293745)
Skill path: .github/agents/<name>.agent.md
</adapter>
<scope_policy>
ViePilot Namespace Guard (BUG-004)
- Default mode: only use and reference
vp-*skills in ViePilot workflows. - External skills (
non vp-*) are out of framework scope unless user explicitly opts in.</scope_policy>
/vp-proposalgenerates output artifacts (docs/proposals/*.pptx,*.docx,*.md) — it does not implement shipping code forlib/,tests/,bin/, or frameworkworkflows//skills/.- This skill is the delivery lane after
/vp-brainstormcaptures the ideas. Use/vp-request→/vp-evolve→/vp-autofor ViePilot framework feature work. - Exception: User explicit bypass — state clearly in chat.</implementation_routing_guard>
Output files (written to docs/proposals/):
{slug}-{date}.md— structured proposal Markdown (source of truth){slug}-{date}.pptx— presentation file (ViePilot branded, dark navy/charcoal){slug}-{date}.docx— detailed project document{slug}-{date}-slides.txt— Google Slides URL (only with--slidesflag)
Proposal types:
| Type | Slides | Use case |
|---|---|---|
project-proposal |
10 | Scope, timeline, budget for clients |
tech-architecture |
12 | Technical design for partners |
product-pitch |
12 | Investor / partner pitch deck |
general |
8 | Generic, fallback |
Template resolution (2-tier):
.viepilot/proposal-templates/{type}.pptx— project-level override{viepilot-install}/templates/proposal/pptx/{type}.pptx— ViePilot stock
Context detection:
- Auto-loads latest
docs/brainstorm/session-*.mdwhen present - Standalone mode if no session found (user provides brief)
--from session-YYYY-MM-DD.mdfor explicit session selection</objective>
Step 1: Context Detection
- Scan
docs/brainstorm/forsession-*.md→ sort descending → load latest - If
--fromspecified: load that file directly - If no session found: prompt user for brief:
- Project name
- One-line description
- Target audience (client / partner / investor)
- 3–5 key points to cover
Step 2: Proposal Type Selection
- If
--typeprovided: validate; show type + slide count to confirm - Else: present menu:
1. Project Proposal (10 slides) — scope, timeline, budget 2. Tech Architecture (12 slides) — system design for partners 3. Product Pitch Deck (12 slides) — investor / partner pitch 4. General Proposal ( 8 slides) — generic fallback
Step 3: AI Slide Manifest Generation
- Structure context into JSON manifest:
{ "title": "...", "subtitle": "...", "slides": [ { "index": 1, "layout": "cover", "heading": "...", "body": "...", "speakerNotes": "..." }, { "index": 2, "layout": "section", "heading": "...", "bullets": ["..."], "speakerNotes": "..." } ] } - Slide count MUST match
PROPOSAL_TYPES[typeId].slides - If
--dry-run: print manifest and stop
Step 4: Template Resolution
- Call
resolveTemplate(typeId, 'pptx', projectRoot)→ pptx template path - Call
resolveTemplate('project-detail', 'docx', projectRoot)→ docx template path - Warn (not error) if stock fallback is used
Step 5: Generate .pptx
- Load template via pptxgenjs
- Apply slide manifest: inject titles, bullets, speaker notes per slide
- Ensure
docs/proposals/directory exists - Write
{slug}-{date}.pptx
Step 6: Generate .docx
- Build detailed document from same manifest + extended content
- Sections: Executive Summary, Problem & Solution, Features & Specifications, Technical Architecture (if relevant), Timeline, Team, Appendix
- Write
{slug}-{date}.docx
Step 7: Generate .md summary
- Write Markdown mirror of the manifest
- Save
{slug}-{date}.md
Step 8: Optional Google Slides upload (--slides)
- Call
lib/google-slides-exporter.cjs→uploadToSlides(pptxPath, title) - Write URL to
{slug}-{date}-slides.txt - On failure: surface error but do NOT fail the whole command (files already written)
Step 9: Confirm output
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
VIEPILOT ► PROPOSAL GENERATED ✓
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Type: {type label} ({N} slides)
Context: {session file or "direct brief"}
Files:
docs/proposals/{slug}-{date}.md
docs/proposals/{slug}-{date}.pptx
docs/proposals/{slug}-{date}.docx
[docs/proposals/{slug}-{date}-slides.txt] ← if --slides
Next:
Open .pptx in PowerPoint / Keynote / LibreOffice
Share .docx as supporting document
Run /vp-proposal --slides to upload to Google Slides
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
</process>
<success_criteria>
- [ ] Context detected (brainstorm session or user brief)
- [ ] Proposal type selected and validated
- [ ] Slide manifest generated with correct slide count
- [ ] .pptx written to docs/proposals/
- [ ] .docx written to docs/proposals/
- [ ] .md summary written to docs/proposals/
- [ ] Template resolution: project override takes precedence over stock
- [ ] --lang: content generated in specified language; MRU saved to config
- [ ] --lang-content-only: bullets/notes translated; structural labels stay English
- [ ] --slides: Google Slides URL written to -slides.txt (or clear error shown)
- [ ] --dry-run: manifest printed, no files written
</success_criteria>
- 流狐分类
- 文档
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 92 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @0-CODE · v0.1.0 · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- macOS · Linux · Windows
- 底层运行要求
- Node.js
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- Shell 执行
- 读取环境变量
- 检测到的网络行为
- 仅限本地
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
# Step 9: Confirm output
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
VIEPILOT ► PROPOSAL GENERATED ✓
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Type: {type label} ({N} slides)
Context: {session file or "direct brief"}
Files:
docs/proposals/{slug}-{date}.md
docs/proposals/{slug}-{date}.pptx
docs/proposals/{slug}-{date}.docx
[docs/proposals/{slug}-{date}-slides.txt] ← if --slides
Next:
Open .pptx in PowerPoint / Keynote / LibreOffice
Share .docx as supporting document
Run /vp-proposal --slides to upload to Google Slides
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Scan docs/brainstorm/ for session-.md → sort descending → load latest If --from specified: load that file directly If no session found: prompt user for brief:
If --type provided: validate; show type + slide count to confirm Else: present menu:
<greeting>
## Invocation Banner
Output this banner as the **first** thing on every invocation — before questions, work, or any other output:
```
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
VIEPILOT ► VP-PROPOSAL v0.1.0 (fw 2.19.0)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
```
</greeting>
<version_check>
## Version Update Check (ENH-072)
After displaying the greeting banner, run:
```bash
node "$HOME/.claude/viepilot/bin/vp-tools.cjs" check-update --silent
```
**If exit code = 1** (update available — new version printed to stdout):
Display notice banner before any other output:
```
┌──────────────────────────────────────────────────────────────────┐
│ ✨ ViePilot {latest_version} available (installed: {current}) │
│ npm i -g viepilot && vp-tools install --target {adapter_id} │
└──────────────────────────────────────────────────────────────────┘
```
Replace `{latest_version}` with stdout from the command, `{current}` with the installed
version, `{adapter_id}` with the active adapter (claude-code / cursor / antigravity / codex / copilot).
**If exit code = 0 or command unavailable**: silent, continue.
**Suppression rules:**
- `--no-update-check` flag on skill invocation → skip this step entirely
- `config.json` → `update.check: false` → skip this step entirely
- Show at most once per session (`update_check_done` session guard)
</version_check>
<persona_context>
## Persona Context Injection (ENH-073)
At skill start, run:
```bash
node "$HOME/.claude/viepilot/bin/vp-tools.cjs" persona auto-switch
node "$HOME/.claude/viepilot/bin/vp-tools.cjs" persona context
```
Inject the output as `## User Persona` context before any task execution.
Silent if command unavailable or errors.
</persona_context>
<adapter id="claude-code">
## A. Skill Invocation
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Invocation Banner → Version Update Check (ENH-072) → Persona Context Injection (ENH-073) → A. Skill Invocation → B. User Prompting → C. Tool Usage
要点 -> first · If exit code = 1 · If exit code = 0 or command unavailable · Suppression rules · /vp-proposal · output artifacts · not · delivery lane
文件/命令 -> {latestversion} · {current} · {adapterid} · --no-update-check · config.json · update.check: false · updatecheckdone · ## User Persona
内容 SHA-256 -> 686b11bd8a55
方法与流程
适用与边界
原文中的明确线索
{latestversion}、{current}、{adapterid}、--no-update-check、config.json、update.check: false、updatecheckdone、## User Persona