takomi 2.1.38 → 2.1.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (90) hide show
  1. package/.agents/plugins/marketplace.json +32 -0
  2. package/.pi/agents/architect.md +4 -2
  3. package/.pi/agents/designer.md +2 -0
  4. package/.pi/agents/orchestrator.md +9 -9
  5. package/.pi/prompts/design-prompt.md +3 -1
  6. package/.pi/prompts/genesis-prompt.md +2 -0
  7. package/.pi/prompts/takomi-prompt.md +10 -9
  8. package/README.md +218 -409
  9. package/assets/.agent/skills/takomi-flow/SKILL.md +244 -0
  10. package/assets/.agent/workflows/README.md +3 -3
  11. package/assets/.agent/workflows/mode-architect.md +7 -5
  12. package/assets/.agent/workflows/vibe-design.md +3 -1
  13. package/assets/.agent/workflows/vibe-genesis.md +2 -0
  14. package/assets/Takomi-Agents/custom_modes.yaml +1253 -1252
  15. package/assets/Takomi-Agents/vibe-architect.yaml +11 -6
  16. package/assets/Takomi-Agents/vibe-orchestrator.yaml +2 -2
  17. package/docs/features/TakomiFlow_Portable_Plugin.md +82 -0
  18. package/docs/takomi-flow-onboarding.md +86 -0
  19. package/docs/takomi-flow-public-distribution.md +94 -0
  20. package/package.json +19 -2
  21. package/plugins/takomi-codex/.codex-plugin/plugin.json +37 -0
  22. package/plugins/takomi-codex/assets/composer-icon.png +0 -0
  23. package/plugins/takomi-codex/assets/logo-dark.png +0 -0
  24. package/plugins/takomi-codex/assets/logo.png +0 -0
  25. package/plugins/takomi-codex/scripts/takomi-board.ps1 +197 -0
  26. package/plugins/takomi-codex/scripts/takomi-detect.ps1 +125 -0
  27. package/plugins/takomi-codex/scripts/takomi-doctor.ps1 +88 -0
  28. package/plugins/takomi-codex/scripts/takomi-harness.ps1 +52 -0
  29. package/plugins/takomi-codex/scripts/takomi-pi-dispatch.ps1 +93 -0
  30. package/plugins/takomi-codex/scripts/takomi-policy.ps1 +108 -0
  31. package/plugins/takomi-codex/skills/takomi-codex/SKILL.md +194 -0
  32. package/plugins/takomi-flow/.codex-plugin/plugin.json +36 -0
  33. package/plugins/takomi-flow/.mcp.json +11 -0
  34. package/plugins/takomi-flow/assets/capabilities.json +203 -0
  35. package/plugins/takomi-flow/assets/collection.schema.json +29 -0
  36. package/plugins/takomi-flow/assets/composer-icon.png +0 -0
  37. package/plugins/takomi-flow/assets/examples.json +94 -0
  38. package/plugins/takomi-flow/assets/logo-dark.png +0 -0
  39. package/plugins/takomi-flow/assets/logo.png +0 -0
  40. package/plugins/takomi-flow/assets/request.schema.json +91 -0
  41. package/plugins/takomi-flow/assets/result.schema.json +46 -0
  42. package/plugins/takomi-flow/assets/templates/image-request.json +17 -0
  43. package/plugins/takomi-flow/assets/templates/video-request.json +19 -0
  44. package/plugins/takomi-flow/package.json +38 -0
  45. package/plugins/takomi-flow/pnpm-lock.yaml +813 -0
  46. package/plugins/takomi-flow/references/flow-provider-contract.md +349 -0
  47. package/plugins/takomi-flow/scripts/lib/agent-plan.mjs +140 -0
  48. package/plugins/takomi-flow/scripts/lib/api.mjs +113 -0
  49. package/plugins/takomi-flow/scripts/lib/args.mjs +66 -0
  50. package/plugins/takomi-flow/scripts/lib/audit.mjs +65 -0
  51. package/plugins/takomi-flow/scripts/lib/browser.mjs +78 -0
  52. package/plugins/takomi-flow/scripts/lib/capabilities.mjs +11 -0
  53. package/plugins/takomi-flow/scripts/lib/collect.mjs +53 -0
  54. package/plugins/takomi-flow/scripts/lib/commands.mjs +192 -0
  55. package/plugins/takomi-flow/scripts/lib/doctor.mjs +77 -0
  56. package/plugins/takomi-flow/scripts/lib/examples.mjs +17 -0
  57. package/plugins/takomi-flow/scripts/lib/flow-media.mjs +39 -0
  58. package/plugins/takomi-flow/scripts/lib/flow-outcome.mjs +115 -0
  59. package/plugins/takomi-flow/scripts/lib/flow-project-session.mjs +153 -0
  60. package/plugins/takomi-flow/scripts/lib/flow-ui.mjs +204 -0
  61. package/plugins/takomi-flow/scripts/lib/generation.mjs +190 -0
  62. package/plugins/takomi-flow/scripts/lib/inspect.mjs +81 -0
  63. package/plugins/takomi-flow/scripts/lib/mcp-prompts.mjs +39 -0
  64. package/plugins/takomi-flow/scripts/lib/mcp-resources.mjs +16 -0
  65. package/plugins/takomi-flow/scripts/lib/mcp-tools.mjs +165 -0
  66. package/plugins/takomi-flow/scripts/lib/media.mjs +78 -0
  67. package/plugins/takomi-flow/scripts/lib/observe.mjs +54 -0
  68. package/plugins/takomi-flow/scripts/lib/paths.mjs +37 -0
  69. package/plugins/takomi-flow/scripts/lib/playwright-loader.mjs +23 -0
  70. package/plugins/takomi-flow/scripts/lib/prompts.mjs +72 -0
  71. package/plugins/takomi-flow/scripts/lib/report.mjs +141 -0
  72. package/plugins/takomi-flow/scripts/lib/request-validator.mjs +73 -0
  73. package/plugins/takomi-flow/scripts/lib/request.mjs +66 -0
  74. package/plugins/takomi-flow/scripts/lib/resource-files.mjs +69 -0
  75. package/plugins/takomi-flow/scripts/lib/result.mjs +31 -0
  76. package/plugins/takomi-flow/scripts/lib/review.mjs +44 -0
  77. package/plugins/takomi-flow/scripts/lib/selftest.mjs +153 -0
  78. package/plugins/takomi-flow/scripts/lib/settings-plan.mjs +44 -0
  79. package/plugins/takomi-flow/scripts/lib/templates.mjs +37 -0
  80. package/plugins/takomi-flow/scripts/lib/trusted-chrome.mjs +67 -0
  81. package/plugins/takomi-flow/scripts/lib/workflow.mjs +56 -0
  82. package/plugins/takomi-flow/scripts/mcp-server.mjs +18 -0
  83. package/plugins/takomi-flow/scripts/mcp-smoke.mjs +144 -0
  84. package/plugins/takomi-flow/scripts/takomi-flow.mjs +17 -0
  85. package/plugins/takomi-flow/skills/takomi-flow/SKILL.md +244 -0
  86. package/plugins/takomi-flow/skills/takomi-flow/agents/openai.yaml +7 -0
  87. package/scripts/install-takomi-flow.ps1 +85 -0
  88. package/src/pi-takomi-core/orchestration.ts +1 -1
  89. package/src/pi-takomi-core/workflows.ts +4 -4
  90. package/src/skills-catalog.js +11 -7
package/README.md CHANGED
@@ -2,497 +2,300 @@
2
2
 
3
3
  <div align="center">
4
4
  <h3>🎯 Stop Wrestling With AI. Start Building With Purpose.</h3>
5
- <p><em>The artisan's toolkit that transforms AI from chatbot to development partner — powered by the VibeCode Protocol</em></p>
5
+ <p><em>The artisan's toolkit that transforms AI from chatbot to development partner</em></p>
6
+
7
+ [![npm version](https://img.shields.io/npm/v/takomi?color=%23cb3837&label=npm)](https://www.npmjs.com/package/takomi)
8
+ [![npm downloads](https://img.shields.io/npm/dm/takomi?color=%232b8a3e&label=downloads)](https://www.npmjs.com/package/takomi)
9
+ [![GitHub stars](https://img.shields.io/github/stars/JStaRFilms/VibeCode-Protocol-Suite?style=flat&color=%23e3b341&label=stars)](https://github.com/JStaRFilms/VibeCode-Protocol-Suite)
10
+ [![License: ISC](https://img.shields.io/npm/l/takomi?color=%234c1)](https://github.com/JStaRFilms/VibeCode-Protocol-Suite/blob/main/LICENSE)
6
11
  </div>
7
12
 
8
13
  ---
9
14
 
10
- > **🎉 Rebrand Notice:** VibeSuite is now **Takomi**!
11
- > If you're following tutorials that reference `vibesuite` or `VibeCode`, simply use `takomi` instead.
12
- > Example: `npx vibesuite install` `npx takomi install`
13
- > The VibeCode Protocol lives on as the engine powering Takomi.
15
+ ## What Is Takomi?
16
+
17
+ **AI shouldn't feel like a chatbot. It should feel like a teammate.**
18
+
19
+ Takomi is a complete workflow system for collaborating with AI to build software. Think of yourself as the CEO, and your AI assistants as a specialized, high-performance development team — an Architect who plans, a Builder who implements, a Reviewer who catches mistakes, and an Orchestrator who coordinates them all.
20
+
21
+ This isn't prompt engineering. This is **orchestrated development** — a battle-tested collection of protocols, workflows, and skills that transform AI coding assistants into genuine project partners. It works across every major AI-powered IDE and even browser-based AI like ChatGPT and Claude.
14
22
 
15
23
  ---
16
24
 
17
- ## 🚀 Quick Start (Recommended)
25
+ ## Features
18
26
 
19
- ### Takomi Pi Harness
27
+ - **🧠 72+ Skills** — Specialized capabilities from security audits to AI video generation, installed on demand
28
+ - **🔄 Universal IDE Sync** — Install once, sync to Antigravity, Claude Code, Codex, Cursor, Kilo Code, Pi, and Windsurf
29
+ - **🏗️ Full Project Lifecycle** — From genesis (planning) through design, build, and finalize — with verification gates at every step
30
+ - **🎭 Specialized Agent Modes** — Orchestrator, Architect, Coder, Debugger, Reviewer — each with purpose-built workflows
31
+ - **📦 Codex-Native Skills** — Use natural language (`use takomi genesis`) — no slash commands required
32
+ - **🔌 Pi Harness Integration** — First-class Pi support with context management, model routing, and optional feature packs
33
+ - **🌐 Global Skills Router** — One `~/.takomi/` store, synced to every IDE via symlinks or copy
20
34
 
21
- ```bash
22
- npm install -g takomi
23
- takomi setup pi
24
- cd my-project
25
- takomi
26
- ```
35
+ ---
27
36
 
28
- Optional global skills:
37
+ ## Quick Start
29
38
 
30
39
  ```bash
31
- takomi setup skills
32
- # First install defaults to Core Skills.
33
- # Repeat installs default to Leave As Is so existing selections are not pruned accidentally.
34
- # Custom opens a color-coded category TUI with expandable skill rows when a TTY is available.
35
- # Optional Pi feature packs can also be managed later:
36
- takomi setup pi-features
40
+ npm install -g takomi
41
+ takomi setup
37
42
  ```
38
43
 
39
- Useful management commands:
44
+ That's it. Takomi auto-detects your installed IDEs, creates your toolkit at `~/.takomi/`, and syncs your selected skills everywhere.
40
45
 
41
46
  ```bash
42
- takomi refresh # one-command update: Takomi + Pi/assets/skills
43
- takomi status
44
- takomi doctor
45
- takomi setup all
46
- takomi setup project
47
+ # Day-to-day usage
48
+ takomi # Launch in your current project
49
+ takomi status # See what's connected
50
+ takomi refresh # One-command update for everything
51
+ takomi doctor # Run diagnostics
47
52
  ```
48
53
 
49
- Legacy commands like `takomi install pi`, `takomi sync pi`, `takomi upgrade`, and `takomi init` still work, but the simpler mental model is: **setup once, refresh when stale, run `takomi` to use it.**
54
+ <details>
55
+ <summary><strong>📋 More install options (Pi, Codex, per-project, browser)</strong></summary>
50
56
 
51
- During `takomi setup pi` or `takomi setup pi-features`, Takomi offers optional Pi feature packs with recommended/manual/select-all/skip choices. Current defaults install **Takomi Interview** (`npm:@juicesharp/rpiv-ask-user-question`) so models can ask structured clarification questions. **Takomi Todo** (`npm:@juicesharp/rpiv-todo`), **Takomi Browser QA** (`npm:pi-chrome`), and **Takomi Doc Preview** (`npm:pi-markdown-preview`) remain opt-in. `takomi refresh` runs Pi's package updater so installed optional, custom, old, and new Pi packages are reconciled together.
52
-
53
- Takomi keeps `pi-subagents` installed as an internal runtime module, but setup/refresh now detects legacy raw Pi subagent activation (`npm:pi-subagents` in Pi settings or `~/.pi/agent/extensions/subagent`) and offers to disable it so models see `takomi_subagent` instead of two competing subagent tools.
54
-
55
- ### Context Manager
56
-
57
- Takomi now ships a Pi-native `takomi-context-manager` extension. It reduces prompt bloat with progressive context loading:
58
-
59
- - skill names are always visible, while descriptions and full `SKILL.md` files load only when needed
60
- - `skill_manifest`, `skill_load`, `policy_manifest`, `policy_load`, and `context_report` tools expose context on demand
61
- - `/takomi routing` remains the source of truth for model-routing policy
62
- - `takomi_subagent` is guarded by routing-policy context and can recover from wrong-provider model choices
63
- - `/context-report` shows prompt compaction, loaded skills/policies, blocked actions, model-routing corrections, and duplicate extension diagnostics
64
-
65
- `context_report` is context-manager-specific rather than a clone of Pi's Alt-C window. It restores its own hidden snapshots and Pi tool-result history after `/reload`/restart, and labels any remaining gaps instead of reporting fresh in-memory zeros as session truth. It supports `mode: "summary" | "verbose" | "problems"`; `verbose: true` remains a compatibility alias for `mode: "verbose"`. The `/context-report` slash command supports argument completions for `summary`, `verbose`, and `problems`.
66
-
67
- ### Option A: Global Install (Best for Multi-IDE Users) ⭐
68
-
69
- Install once. Use everywhere. Your skills follow you across detected AI harnesses (Antigravity, Claude Code, Codex, Cursor, Kilo Code, Pi/shared Agent Skills, Windsurf):
57
+ ### Pi Harness
70
58
 
71
59
  ```bash
72
- # Using pnpm
73
- pnpm dlx takomi install
74
-
75
- # Using npx
76
- npx takomi install
60
+ takomi setup pi
61
+ cd my-project
62
+ takomi
77
63
  ```
78
64
 
79
- What happens next:
80
- - 🔍 **Auto-detects** every AI harness on your machine
81
- - 📦 **Creates your command center** at `~/.takomi/`
82
- - 🧰 **Lets you choose Core, Present Custom, Custom, All, or Leave As Is for skills**
83
- - 📡 **Syncs your selected toolkit** to every IDE automatically
84
- - 🔄 **Keeps KiloCode in sync** across CLI and VS Code
85
-
86
- ### Option B: Per-Project Setup
87
-
88
- Need workflows for just this project? Drop them in with one command:
65
+ Optional global skills and feature packs:
89
66
 
90
67
  ```bash
91
- pnpm dlx takomi init
68
+ takomi setup skills # Core Skills on first install, custom category browser on repeat
69
+ takomi setup pi-features # Optional Pi packages (Interview, Todo, Browser QA, Doc Preview)
92
70
  ```
93
71
 
94
- Choose your weapons:
95
- - ✅ **.agent Folder** — Workflows for Cursor, Windsurf, Gemini Code Assist
96
- - ✅ **Agent YAMLs** — Custom modes for Kilo Code
97
- - ✅ **Legacy Protocols** — Copy-paste prompts for browser AI
98
- - ✅ **Cherry-pick** exactly the workflows and skills you need
72
+ ### Codex Plugin Marketplace
99
73
 
100
- ---
74
+ Add the Takomi marketplace to Codex and browse plugins directly from the Codex UI:
75
+
76
+ **Add the marketplace source** — In Codex, go to **Plugins → Add plugin marketplace** and enter:
101
77
 
102
- ## Codex Takomi Skills (No Slash Required)
78
+ | Field | Value |
79
+ |-------|-------|
80
+ | **Source** | `JStaRFilms/VibeCode-Protocol-Suite` |
81
+ | **Git ref** | `main` |
82
+ | **Sparse paths** | `.agents/plugins`<br>`plugins` |
103
83
 
104
- Takomi now supports a full skill-native protocol path in Codex:
105
- - Router skill: `takomi`
106
- - Specialist skills: `takomi-*` (migrated from non-legacy workflows)
107
- - Backward phrase aliases: `vibe genesis`, `vibe build`, `mode code`, and related prior names
84
+ > **Tip:** For the full J StaR plugin catalog, use `.agents/plugins` and `plugins` as sparse paths instead.
108
85
 
109
- Use natural language:
86
+ Once added, search for "TakomiFlow" or "takomi-codex" inside the Codex plugin browser and install.
87
+
88
+ You can also use Takomi skills with natural language — no slash commands needed:
110
89
 
111
90
  ```text
112
91
  use takomi
113
92
  use takomi genesis
114
- run vibe genesis
115
93
  continue build with takomi
116
94
  ```
117
95
 
118
- Install the Takomi protocol suite:
119
-
120
- ```bash
121
- npx -y skills add https://github.com/JStaRFilms/VibeCode-Protocol-Suite --skill takomi
122
- ```
123
-
124
- Original Takomi-authored skills in this bundle include `21st-dev-components`, `takomi`, `global-brand-namer`, `jstar-reviewer`, and the core VibeCode/Takomi workflow skills that ship with the CLI.
125
-
126
- ### Codex Plugin Quick Start
127
-
128
- For the newer repo-local Codex plugin path, enable `takomi-codex` from `.agents/plugins/marketplace.json`. That marketplace entry points Codex at `./plugins/takomi-codex`, which includes plugin metadata, the `takomi-codex` skill, and local verification scripts.
129
-
130
- This plugin path is distinct from `skills add --skill takomi`, which installs the older global Takomi skill. Use natural language such as `use takomi-codex to inspect this repo`, `use Takomi to plan this feature`, or `create a Takomi roadbook for this work`.
131
-
132
- See [Takomi Codex Onboarding](docs/takomi-codex-onboarding.md) for activation, first-run verification, policy loading, roadbooks, dry-run dispatch, no-Pi fallback, and troubleshooting.
133
-
134
- ---
135
-
136
- ## 📦 Skill Ecosystem
137
-
138
- Think of skills as specialized team members you can summon on demand. From security audits to AI video generation — there's a skill for that.
139
-
140
- Takomi's own installer no longer installs every bundled skill by default. `takomi setup skills` uses **Core Skills** for first-time installs, **Leave As Is** for repeat installs, and ownership-safe cleanup when you explicitly deselect Takomi-managed skills. Manual/user-added skills are preserved. Custom selection opens a color-coded category browser with expandable rows on capable terminals, and falls back to simple prompts elsewhere. The global store/harness sync path uses the same ownership model so deselected Takomi-managed skills and workflows can be pruned from `~/.takomi/` and synced harness folders without touching manual or imported resources.
141
-
142
- The published bundle currently ships **72 top-level skills**, including the original `21st-dev-components` workflow for guided 21st.dev integration. The `pr-comment-fix` skill is sourced from https://gist.github.com/GSonofNun/35c67304c35dac7d6b43308b5371f671.
143
-
144
- ### Interactive Search & Install
145
- ```bash
146
- # Using pnpm
147
- pnpm dlx skills add https://github.com/JStaRFilms/VibeCode-Protocol-Suite
148
-
149
- # Using npx
150
- npx -y skills add https://github.com/JStaRFilms/VibeCode-Protocol-Suite
151
- ```
152
-
153
- ### Core Essentials (Start Here)
154
- The recommended Takomi installer defaults are:
96
+ See [Takomi Codex Onboarding](docs/takomi-codex-onboarding.md) for activation, policy loading, roadbooks, and troubleshooting.
155
97
 
156
- ```txt
157
- takomi
158
- sync-docs
159
- code-review
160
- security-audit
161
- optimize-agent-context
162
- agent-recovery
163
- avoid-feature-creep
164
- ai-sdk
165
- git-commit-generation
166
- ```
98
+ ### Per-Project Setup
167
99
 
168
- For the external `skills` CLI, install only the router skill if you want the smallest possible footprint:
100
+ Drop workflows into a single project without global install:
169
101
 
170
102
  ```bash
171
- npx -y skills add https://github.com/JStaRFilms/VibeCode-Protocol-Suite --skill takomi
103
+ npx takomi init
172
104
  ```
173
105
 
174
- ### Convex Development Suite
175
- Backend superpowers for the Convex ecosystem:
176
- ```bash
177
- npx -y skills add https://github.com/JStaRFilms/VibeCode-Protocol-Suite --skill convex --skill convex-agents --skill convex-best-practices --skill convex-component-authoring --skill convex-cron-jobs --skill convex-file-storage --skill convex-functions --skill convex-http-actions --skill convex-migrations --skill convex-realtime --skill convex-schema-validator --skill convex-security-audit --skill convex-security-check
178
- ```
106
+ Choose from `.agent` folder (Cursor, Windsurf, Gemini Code Assist), Agent YAMLs (Kilo Code), or legacy protocols (browser AI).
179
107
 
180
- ### AI Media Suite (Paid / Advanced)
181
- For when you need more than code — videos, voice, images, and automation:
182
- ```bash
183
- npx -y skills add https://github.com/JStaRFilms/VibeCode-Protocol-Suite --skill ai-avatar-video --skill ai-marketing-videos --skill ai-podcast-creation --skill ai-product-photography --skill ai-social-media-content --skill ai-voice-cloning
184
- ```
108
+ ### Global Install (Multi-IDE)
109
+
110
+ Install once. Use everywhere. Skills follow you across all detected AI harnesses:
185
111
 
186
- ### The Full Arsenal (Free)
187
- Everything else — SEO, research, documentation, testing, and beyond:
188
112
  ```bash
189
- npx -y skills add https://github.com/JStaRFilms/VibeCode-Protocol-Suite --skill 21st-dev-components --skill agent-recovery --skill algorithmic-art --skill audit-website --skill avoid-feature-creep --skill building-native-ui --skill code-review --skill component-analysis --skill context7 --skill convex --skill convex-agents --skill convex-best-practices --skill convex-component-authoring --skill convex-cron-jobs --skill convex-file-storage --skill convex-functions --skill convex-http-actions --skill convex-migrations --skill convex-realtime --skill convex-schema-validator --skill convex-security-audit --skill convex-security-check --skill copywriting --skill crafting-effective-readmes --skill docx --skill domain-name-brainstormer --skill frontend-design --skill gemini --skill git-worktree --skill github-ops --skill global-brand-namer --skill google-trends --skill high-fidelity-extraction --skill jstar-reviewer --skill jules --skill marketing-ideas --skill monorepo-management --skill nextjs-standards --skill optimize-agent-context --skill pdf --skill pptx --skill pr-comment-fix --skill pricing-strategy --skill programmatic-seo --skill prompt-engineering --skill remotion --skill security-audit --skill seo-ready --skill skill-creator --skill social-content --skill spawn-task --skill stitch --skill subagent-driven-development --skill sync-docs --skill twitter-automation --skill ui-ux-pro-max --skill upgrading-expo --skill webapp-testing --skill web-design-guidelines --skill xlsx --skill youtube-pipeline
113
+ npx takomi install
190
114
  ```
191
115
 
192
- ---
116
+ ### Browser-Based AI (ChatGPT, Claude.ai, Gemini)
193
117
 
194
- ## 🌐 Global Skills Router (v2.0)
118
+ 1. Open a `.md` file from `Legacy (Manual Method)/`
119
+ 2. Copy the entire prompt
120
+ 3. Paste into your AI chat
121
+ 4. Follow the conversation flow
195
122
 
196
- **One install. Every IDE. Zero friction.**
123
+ | # | Protocol | Purpose |
124
+ |---|----------|---------|
125
+ | 1 | **Project Genesis Protocol** | Start any new project |
126
+ | 2 | **Ultimate Orchestration Prompt** | One-shot prompt for quick scripts |
127
+ | 3 | **Design System Genesis Protocol** | Create visual design systems |
128
+ | 5 | **Escalation & Handoff Protocol** | When AI gets stuck |
129
+ | 9 | **Reverse Genesis Protocol** | Onboard AI to existing codebases |
197
130
 
198
- Takomi v2.0 introduces the **Global Skills Router** — install skills once into `~/.takomi/`, and Takomi syncs them into each harness' current global skills directory. You can choose symlink/junction mode for one canonical copy, auto fallback, or plain copy mode. Works on Mac & Windows.
131
+ </details>
199
132
 
200
- Note: `SKILL.md` is portable, but `~/.agents/skills` is **not** a universal global skills directory. Pi does load `~/.agents/skills`, and Takomi keeps that as the Pi/shared Agent Skills target. Other harnesses use their own global paths. See `docs/skills-harness-targets.md` for the current checked path table.
133
+ <details>
134
+ <summary><strong>🔌 TakomiFlow (Google Flow Assets)</strong></summary>
201
135
 
202
- ### Supported Harnesses
136
+ TakomiFlow packages Google Flow image/video generation as a Codex plugin with MCP tools plus a CLI fallback. It can generate Flow keyframes, short video shots, moodboards, collect downloaded assets, extract review frames, and record Flow project URLs.
203
137
 
204
- | Harness | Global Skills Path | Global Workflows Path |
205
- |---|---|---|
206
- | **Antigravity** | `~/.gemini/config/skills/` | `~/.gemini/config/global_workflows/` |
207
- | **Claude Code** | `~/.claude/skills/` | _(skills only)_ |
208
- | **Codex** | `~/.codex/skills/` | _(skills only)_ |
209
- | **Cursor** | `~/.cursor/skills/` | _(skills only)_ |
210
- | **Kilo Code** | `~/.kilocode/skills/` | `~/.kilocode/workflows/` |
211
- | **Pi / shared Agent Skills** | `~/.agents/skills/` | _(skills only)_ |
212
- | **Windsurf** | `~/.codeium/windsurf/skills/` | `~/.codeium/windsurf/global_workflows/` |
138
+ ```powershell
139
+ .\scripts\install-takomi-flow.ps1 -InstallDependencies
140
+ ```
213
141
 
214
- ### CLI Commands
142
+ See [TakomiFlow Onboarding](docs/takomi-flow-onboarding.md) and [TakomiFlow Public Distribution](docs/takomi-flow-public-distribution.md).
215
143
 
216
- | Command | What It Does |
217
- |---|---|
218
- | `takomi` | Launch Takomi in the current project |
219
- | `takomi setup` | One-time guided setup — detects IDEs, creates your toolkit, syncs everything |
220
- | `takomi setup pi\|skills\|project\|all` | Targeted setup without memorizing installer internals |
221
- | `takomi refresh` | One-command update for Takomi CLI, Pi/assets, and skills |
222
- | `takomi refresh pi\|skills\|project\|all` | Targeted refresh when you need it |
223
- | `takomi add <url>` | Pull skills from any GitHub repo into your global store |
224
- | `takomi status` | See what's connected and your toolkit status |
225
- | `takomi doctor` | Run detailed diagnostics |
144
+ </details>
226
145
 
227
- Legacy aliases remain supported: `install` → `setup`, `sync`/`upgrade` → `refresh`, `init` → `setup project`, `harnesses` → `status`, `update` → `refresh project`.
146
+ ---
228
147
 
229
- ### Example: Add Remote Skills
148
+ ## Skill Ecosystem
230
149
 
231
- ```bash
232
- # Pull skills from any GitHub repo into your global store
233
- pnpm dlx takomi add https://github.com/JStaRFilms/VibeCode-Protocol-Suite
150
+ Think of skills as specialized team members you can summon on demand. Takomi ships **72+ skills** organized by category.
234
151
 
235
- # See what's connected
236
- pnpm dlx takomi status
152
+ ### Core Skills (Default Install)
237
153
 
238
- # Refresh everything
239
- pnpm dlx takomi refresh
154
+ ```
155
+ takomi ai-sdk sync-docs
156
+ code-review security-audit optimize-agent-context
157
+ agent-recovery avoid-feature-creep git-commit-generation
240
158
  ```
241
159
 
242
- ### KiloCode YAML Auto-Sync
243
-
244
- When KiloCode is detected, `takomi install` syncs `custom_modes.yaml` to **both** locations automatically:
245
- - CLI: `~/.kilocode/cli/global/settings/custom_modes.yaml`
246
- - Extension: `%APPDATA%/Antigravity/User/globalStorage/kilocode.kilo-code/settings/custom_modes.yaml`
247
-
248
- ---
160
+ ### Install More Skills
249
161
 
250
- ## 🌟 What Is Takomi?
162
+ ```bash
163
+ # Interactive browser — pick what you need
164
+ takomi setup skills
251
165
 
252
- **AI shouldn't feel like a chatbot. It should feel like a teammate.**
166
+ # Or via the external skills CLI
167
+ npx -y skills add https://github.com/JStaRFilms/VibeCode-Protocol-Suite
168
+ ```
253
169
 
254
- Takomi is a complete workflow system for collaborating with AI to build software. Think of yourself as the Visionary/CEO, and your AI assistants as a specialized, high-performance development team that actually delivers.
170
+ <details>
171
+ <summary><strong>📚 Full skill categories</strong></summary>
255
172
 
256
- This isn't prompt engineering. This is **orchestrated development** a battle-tested collection of protocols, workflows, and prompts that transform AI from code generators into genuine project partners.
173
+ **Developer / Frameworks** — `ai-sdk`, `nextjs-standards`, `context7`, `monorepo-management`, `upgrading-expo`, `github-ops`, `git-worktree`, `git-commit-generation`, `pr-comment-fix`, `jules`, `gemini`, `anti-gravity`
257
174
 
258
- ---
175
+ **Security / Review** — `security-audit`, `audit-website`, `code-review`, `jstar-reviewer`, `convex-security-audit`, `convex-security-check`
259
176
 
260
- ## 📂 Repository Structure
177
+ **Convex** `convex`, `convex-agents`, `convex-best-practices`, `convex-component-authoring`, `convex-cron-jobs`, `convex-file-storage`, `convex-functions`, `convex-http-actions`, `convex-migrations`, `convex-realtime`, `convex-schema-validator`, `convex-security-audit`, `convex-security-check`
261
178
 
262
- Built for two types of builders:
179
+ **Frontend / UI** `frontend-design`, `web-design-guidelines`, `building-native-ui`, `ui-ux-pro-max`, `component-analysis`, `21st-dev-components`, `stitch`, `webapp-testing`
263
180
 
264
- | Folder | Purpose | Who It's For |
265
- |--------|---------|--------------|
266
- | **`.agent/`** | Workflows & Skills for agentic IDEs | Cursor, Windsurf, Gemini Code Assist users |
267
- | **`Legacy (Manual Method)/`** | Copy-paste prompts & protocols | Browser-based AI users (ChatGPT, Claude.ai) |
268
- | **`Deep_Source_Prompts/`** | Reference docs & source materials | Prompt engineers, contributors |
181
+ **Docs / Office / Extraction** `pdf`, `docx`, `pptx`, `xlsx`, `high-fidelity-extraction`, `crafting-effective-readmes`, `exam-creator-skill`
269
182
 
270
- ---
183
+ **Marketing / SEO / Copy** — `copywriting`, `marketing-ideas`, `pricing-strategy`, `programmatic-seo`, `seo-ready`, `social-content`, `twitter-automation`, `google-trends`, `domain-name-brainstormer`, `global-brand-namer`, `youtube-pipeline`
271
184
 
272
- ## 🤖 For Agentic IDE Users (Recommended)
185
+ **AI Media / Content Creation** `ai-avatar-video`, `ai-marketing-videos`, `ai-podcast-creation`, `ai-product-photography`, `ai-social-media-content`, `ai-voice-cloning`, `takomi-flow`
273
186
 
274
- **Using Cursor, Windsurf, VS Code + Gemini Code Assist, or similar?**
275
- Everything you need is in the **`.agent/`** folder.
187
+ **Creative / Video / Art** `algorithmic-art`, `blender-mcp-scene-director`, `takomi-flow`, `remotion`, `youtube-pipeline`, `ai-avatar-video`, `ai-marketing-videos`, `photo-book-builder`
276
188
 
277
- ### Quick Setup
189
+ **Skill Building / Prompting / Orchestration** — `skill-creator`, `prompt-engineering`, `subagent-driven-development`, `spawn-task`
278
190
 
279
- 1. Copy the `.agent/` folder to your project root
280
- 2. Your IDE automatically detects workflows and skills
281
- 3. Invoke with natural language in Codex (e.g., `use takomi genesis`) - slash commands are optional
191
+ </details>
282
192
 
283
- ### What's Inside `.agent/`
193
+ ---
284
194
 
285
- ```
286
- .agent/
287
- ├── workflows/ # Executable step-by-step workflows
288
- │ ├── vibe-genesis.md # Start new projects (V3)
289
- │ ├── vibe-design.md # Generate design systems
290
- │ ├── vibe-build.md # Execute the build
291
- │ ├── vibe-continueBuild.md # Resume work in new sessions
292
- │ ├── vibe-finalize.md # Final verification & handoff
293
- │ ├── vibe-spawnTask.md # Break down complex features
294
- │ ├── vibe-syncDocs.md # Update documentation
295
- │ ├── vibe-primeAgent.md # Load project context
296
- │ ├── reverse_genesis.md # Onboard to existing codebases
297
- │ │
298
- │ ├── mode-orchestrator.md # Coordinate multi-agent projects
299
- │ ├── mode-architect.md # Plan and design systems
300
- │ ├── mode-code.md # Write and refactor code
301
- │ ├── mode-debug.md # Diagnose issues
302
- │ ├── mode-ask.md # Explain and analyze
303
- │ ├── mode-review.md # Code review (manual)
304
- │ └── ...
305
-
306
- └── skills/ # Implicit capabilities (auto-activated)
307
- ├── prime-agent/ # Load project context
308
- ├── code-review/ # J-Star code review loop
309
- ├── security-audit/ # Deep security analysis
310
- ├── nextjs-standards/ # Next.js coding standards
311
- ├── vercel-ai-sdk/ # AI SDK reference docs
312
- ├── youtube-pipeline/ # Video production workflow
313
- └── ...
314
- ```
195
+ ## Workflows & Modes
315
196
 
316
- ### Key Workflows
197
+ ### Project Lifecycle
317
198
 
318
- #### 🏗️ Project Lifecycle (V3)
319
- | Slash Command | What It Does |
320
- |---------------|--------------|
321
- | `/vibe-genesis` | Architect a new project with PRD, Issues, and Guidelines |
199
+ | Command | What It Does |
200
+ |---------|--------------|
201
+ | `/vibe-genesis` | Architect a new project — PRD, issues, guidelines |
322
202
  | `/vibe-design` | Generate design system and page mockups |
323
- | `/vibe-build` | Scaffold and build the project with verification gates |
203
+ | `/vibe-build` | Scaffold and build with verification gates |
324
204
  | `/vibe-continueBuild` | Resume work in a new chat session |
325
205
  | `/vibe-finalize` | Final verification and handoff report |
326
206
  | `/reverse_genesis` | Onboard AI to an existing codebase |
327
207
 
328
- #### 🎯 Mode Workflows (Specialized Roles)
329
- | Slash Command | What It Does |
330
- |---------------|--------------|
331
- | `/mode-orchestrator` | Coordinate complex multi-agent projects |
332
- | `/mode-architect` | Plan and design technical systems |
333
- | `/mode-code` | Write and refactor code |
334
- | `/mode-debug` | Diagnose and troubleshoot issues |
335
- | `/mode-ask` | Explain and analyze without making changes |
336
- | `/mode-review` | Manual code review before commits |
337
-
338
- #### 🔄 Daily Development
339
- | Slash Command | What It Does |
340
- |---------------|--------------|
341
- | `/vibe-primeAgent` | Load project context at start of session |
208
+ ### Specialized Modes
209
+
210
+ | Command | Role | When to Use |
211
+ |---------|------|-------------|
212
+ | `/mode-orchestrator` | Coordinator | Complex multi-agent projects |
213
+ | `/mode-architect` | Planner | System design before coding |
214
+ | `/mode-code` | Implementer | Day-to-day coding |
215
+ | `/mode-debug` | Diagnostician | Hard-to-find bugs |
216
+ | `/mode-ask` | Analyst | Explain without changing code |
217
+ | `/mode-review` | Reviewer | Pre-commit quality gates |
218
+
219
+ ### Daily Commands
220
+
221
+ | Command | What It Does |
222
+ |---------|--------------|
223
+ | `/vibe-primeAgent` | Load project context at session start |
342
224
  | `/vibe-spawnTask` | Break down complex features into tasks |
343
- | `/vibe-syncDocs` | Update documentation after code changes |
344
- | `/mode-review_code` | Run J-Star automated code review |
225
+ | `/vibe-syncDocs` | Update docs after code changes |
345
226
  | `/escalate` | Generate escalation report when stuck |
346
- | `/migrate` | Transfer context to a new chat session |
227
+ | `/migrate` | Transfer context to a new session |
347
228
 
348
229
  ---
349
230
 
350
- ## 📋 For Browser-Based AI Users
231
+ ## Supported IDEs
351
232
 
352
- **Using ChatGPT, Claude.ai, or Gemini in the browser?**
353
- Use the **`Legacy (Manual Method)/`** folder with copy-paste prompts.
233
+ Install once into `~/.takomi/` Takomi syncs skills to each harness automatically.
354
234
 
355
- ### The Protocol Library
356
-
357
- | # | Protocol | Purpose |
358
- |---|---|----------|
359
- | 0 | **Takomi User Manual** | Complete guide to the system |
360
- | 1 | **Project Genesis Protocol** | Start any new project (99% of cases) |
361
- | 2 | **Ultimate Orchestration Prompt** | One-shot prompt for quick scripts |
362
- | 3 | **Design System Genesis Protocol** | Create visual design systems |
363
- | 4 | **GitHub Issue Meta-Prompt** | Structured issue creation |
364
- | 5 | **Escalation & Handoff Protocol** | When AI gets stuck |
365
- | 8 | **Seamless Migration Meta-Prompt** | Transfer context between sessions |
366
- | 9 | **Reverse Genesis Protocol** | Onboard AI to existing codebases |
235
+ | Harness | Skills Path | Workflows Path |
236
+ |---------|-------------|----------------|
237
+ | **Antigravity** | `~/.gemini/config/skills/` | `~/.gemini/config/global_workflows/` |
238
+ | **Claude Code** | `~/.claude/skills/` | — |
239
+ | **Codex** | `~/.codex/skills/` | |
240
+ | **Cursor** | `~/.cursor/skills/` | |
241
+ | **Kilo Code** | `~/.kilocode/skills/` | `~/.kilocode/workflows/` |
242
+ | **Pi / Agent Skills** | `~/.agents/skills/` | |
243
+ | **Windsurf** | `~/.codeium/windsurf/skills/` | `~/.codeium/windsurf/global_workflows/` |
367
244
 
368
- ### How to Use
245
+ <details>
246
+ <summary><strong>🔧 CLI reference</strong></summary>
369
247
 
370
- 1. Open the relevant `.md` file from `Legacy (Manual Method)/`
371
- 2. Copy the entire prompt
372
- 3. Paste it into your AI chat interface
373
- 4. Follow the conversation flow
248
+ | Command | What It Does |
249
+ |---------|--------------|
250
+ | `takomi` | Launch in the current project |
251
+ | `takomi setup` | Guided first-time setup |
252
+ | `takomi setup pi\|skills\|project\|all` | Targeted setup |
253
+ | `takomi refresh` | One-command update (CLI + Pi + skills) |
254
+ | `takomi refresh pi\|skills\|project\|all` | Targeted refresh |
255
+ | `takomi add <url>` | Pull skills from any GitHub repo |
256
+ | `takomi status` | See connections and toolkit status |
257
+ | `takomi doctor` | Run diagnostics |
374
258
 
375
- ---
259
+ Legacy aliases: `install` → `setup`, `sync`/`upgrade` → `refresh`, `init` → `setup project`.
376
260
 
377
- ## 📚 Deep Source Prompts (For Contributors)
261
+ </details>
378
262
 
379
- The **`Deep_Source_Prompts/`** folder contains the **reference documentation** and **source materials** used to create the workflows and protocols.
263
+ <details>
264
+ <summary><strong>🧩 Context Manager (Pi)</strong></summary>
380
265
 
381
- ### Contents
266
+ Takomi ships a Pi-native `takomi-context-manager` extension that reduces prompt bloat with progressive context loading:
382
267
 
383
- - **Coding Guidelines** React/TypeScript and Next.js App Router standards
384
- - **Vercel AI SDK Docs** Complete AI SDK reference (building RAG, streaming, tools)
385
- - **Design System Docs** Google's Material Design 3, mobile-first patterns
386
- - **Agent Prompts** Raw system prompts for various AI agents
387
- - **OpenRouter Docs** API reference for multi-model routing
268
+ - Skill names are always visible; descriptions and full `SKILL.md` files load only when needed
269
+ - Tools: `skill_manifest`, `skill_load`, `policy_manifest`, `policy_load`, `context_report`
270
+ - `/takomi routing` is the source of truth for model-routing policy
271
+ - `/context-report` shows prompt compaction, loaded skills/policies, blocked actions, and diagnostics
272
+ - Supports `mode: "summary" | "verbose" | "problems"`
388
273
 
389
- > **Note:** These are raw, unprocessed reference materials. They're useful for understanding *why* the workflows are structured the way they are, or for creating new workflows.
274
+ </details>
390
275
 
391
276
  ---
392
277
 
393
- ## 🎯 The Takomi Philosophy
394
-
395
- - **Structured Collaboration**: Clear roles for different AI agents (Genesis, Designer, Builder, Orchestrator, Architect, Coder, Debugger)
396
- - **End-to-End Workflows**: From project genesis to debugging escalations
397
- - **Documentation-Driven**: Every project gets proper docs, issues, and roadmaps
398
- - **Multi-Agent Orchestration**: Coordinate specialized agents for complex projects
399
- - **Scalable**: Works for tiny scripts or enterprise applications
400
-
401
- ## 🆕 What's New (V3 + Mode Workflows)
402
-
403
- ### V3 Project Workflows
404
- The V3 workflows introduce verification gates, TypeScript strict mode, and better continuation support:
405
- - `tsc --noEmit` after every file edit
406
- - 1:1 Feature Requirement ↔ Issue correlation
407
- - Templates from `nextjs-standards` skill
408
- - Seamless session continuation with `/vibe-continueBuild`
409
-
410
- ### Mode Workflows (KiloCode-Inspired)
411
- New specialized mode workflows for targeted tasks:
412
- - `/mode-orchestrator` — Coordinate multi-agent projects with session-based task management
413
- - `/mode-architect` — Plan and design before coding
414
- - `/mode-code` — Focused implementation mode
415
- - `/mode-debug` — Systematic troubleshooting
416
- - `/mode-ask` — Analysis without changes
417
- - `/mode-review` — Quality assessment
418
-
419
- ### Naming Convention
420
- - **`vibe-*`** workflows = Project lifecycle (genesis, design, build, continue, finalize)
421
- - **`mode-*`** workflows = Specialized agent modes (orchestrator, architect, code, debug, ask, review)
422
- - **Skills** = Reusable capabilities with auto-loading (in `.agent/skills/`)
278
+ ## Repository Structure
423
279
 
424
- ---
425
-
426
- ## 👥 Your AI Team
427
-
428
- ### Project Workflows (Vibe Series)
429
- | Role | Workflow | Responsibility | When to Use |
430
- |------|----------|---------------|-------------|
431
- | **Genesis** | `/vibe-genesis` | Strategic planning, PRD creation, issue generation | Starting new projects |
432
- | **Designer** | `/vibe-design` | Visual design systems, UI mockups | Before implementation |
433
- | **Builder** | `/vibe-build` | Initial code implementation with verification | Building the foundation |
434
- | **Continuer** | `/vibe-continueBuild` | Resume work in new sessions | Continuing after breaks |
435
- | **Finalizer** | `/vibe-finalize` | Verification, handoff reports | Project completion |
436
-
437
- ### Mode Workflows (Specialized Modes)
438
- | Role | Workflow | Responsibility | When to Use |
439
- |------|----------|---------------|-------------|
440
- | **Orchestrator** | `/mode-orchestrator` | Coordinate multi-agent projects, delegate tasks | Complex projects requiring coordination |
441
- | **Architect** | `/mode-architect` | Technical planning, system design | Before coding complex features |
442
- | **Coder** | `/mode-code` | Write, refactor, implement code | Day-to-day coding tasks |
443
- | **Debugger** | `/mode-debug` | Systematic issue diagnosis | When bugs are hard to find |
444
- | **Analyst** | `/mode-ask` | Explain, analyze, recommend | Understanding code without changes |
445
- | **Reviewer** | `/mode-review` | Code quality assessment | Pre-commit quality gates |
280
+ | Folder | Purpose | Who It's For |
281
+ |--------|---------|--------------|
282
+ | **`.agent/`** | Workflows & Skills for agentic IDEs | Cursor, Windsurf, Gemini Code Assist |
283
+ | **`Legacy (Manual Method)/`** | Copy-paste prompts & protocols | Browser AI users |
284
+ | **`Deep_Source_Prompts/`** | Reference docs & source materials | Contributors, prompt engineers |
446
285
 
447
286
  ---
448
287
 
449
- ## 🚀 Quick Start Guide
288
+ ## Philosophy
450
289
 
451
- ### For Agentic IDE Users
452
- ```bash
453
- # 1. Copy .agent folder to your project root
454
- cp -r path/to/VibeCode-Protocol-Suite/.agent ./
455
-
456
- # 2. Start a new project (V3 Workflow)
457
- # Type: /vibe-genesis
458
-
459
- # 3. Generate design system
460
- # Type: /vibe-design
461
-
462
- # 4. Build the project
463
- # Type: /vibe-build
464
-
465
- # 5. Continue in new sessions
466
- # Type: /vibe-continueBuild
467
-
468
- # 6. Finalize and handoff
469
- # Type: /vibe-finalize
470
- ```
471
-
472
- ### For Complex Multi-Agent Projects
473
- See the Takumi orchestration build plan: `docs/takumi_code_v0.001_plan.md`.
474
- ```bash
475
- # Use the orchestrator to coordinate multiple specialized agents
476
- # Type: /mode-orchestrator
477
-
478
- # The orchestrator will:
479
- # 1. Break down your project into subtasks
480
- # 2. Create task files in docs/tasks/orchestrator-sessions/[ID]/
481
- # 3. Guide you to spawn sub-agents for each task
482
- # 4. Track completion and synthesize results
483
- ```
484
-
485
- ### For Browser AI Users
486
- ```bash
487
- # 1. Open: Legacy (Manual Method)/1 Project Genesis Protocol The VibeCode Workflow.md
488
- # 2. Copy the entire content
489
- # 3. Paste into ChatGPT/Claude/Gemini
490
- # 4. Follow the conversation flow
491
- ```
290
+ - **Structured Collaboration** Clear roles for each AI agent, not free-form chatting
291
+ - **Documentation-Driven** — Every project gets proper docs, issues, and roadmaps
292
+ - **Verification Gates** `tsc --noEmit` after every edit, 1:1 feature-to-issue mapping
293
+ - **Scalable** — Works for tiny scripts or enterprise applications
294
+ - **Own Your Stack** — No vendor lock-in, works across every major IDE
492
295
 
493
296
  ---
494
297
 
495
- ## 🤝 Contributing
298
+ ## Contributing
496
299
 
497
300
  This is a living system. If you discover improvements:
498
301
 
@@ -500,39 +303,45 @@ This is a living system. If you discover improvements:
500
303
  2. Add reference materials to `Deep_Source_Prompts/` if needed
501
304
  3. Create workflows in `.agent/workflows/` for agentic IDEs
502
305
  4. Update legacy prompts in `Legacy (Manual Method)/` for browser users
503
- 5. Create a GitHub Issue with your proposed changes
306
+ 5. Open a [GitHub Issue](https://github.com/JStaRFilms/VibeCode-Protocol-Suite/issues) with your proposed changes
504
307
 
505
308
  ---
506
309
 
507
- ## 🙏 Acknowledgements
508
-
509
- Externally sourced skills and optional Pi packages retain credit to their upstream creators. Takomi-original skills, workflows, and Takomi runtime/orchestration extensions in this repository, including `21st-dev-components`, remain authored and maintained by J StaR Films Studios.
510
-
511
- - **Pi Coding Agent**: Built for [Pi](https://github.com/earendil-works/pi) / `@earendil-works/pi-coding-agent` by **Mario Zechner** and Earendil Works — the MIT-licensed coding-agent runtime and extension API that powers the Pi-native Takomi harness.
512
- - **Anthropic Skills**: From [anthropics/skills](https://github.com/anthropics/skills) a massive collection including **Office Suite** (PDF/DOCX/PPTX/XLSX), **Frontend Design**, **Webapp Testing**, **Algorithmic Art**, **Monorepo Management**, and **Skill Creator**.
513
- - **Inference.sh Skills**: From [inference.sh/skills](https://github.com/inference-sh/skills) — complete media & automation suite including **Marketing Videos**, **Voice Cloning**, **Social Content**, **Twitter Automation**, **Product Photography**, and **Prompt Engineering**.
514
- - **Marketing Skills**: From [coreyhaines31/marketingskills](https://github.com/coreyhaines31/marketingskills) the complete marketer's toolkit: **Copywriting**, **Pricing Strategy**, **Social Strategy**, **Programmatic SEO**, and **Marketing Ideas**.
515
- - **Expo Skills**: From [Expo](https://github.com/expo/skills) **Building Native UI** (React Native/Expo Router) and **Upgrading Expo** guide.
516
- - **Vercel AI SDK**: From [vercel/ai](https://github.com/vercel/ai) **AI SDK** reference and **Web Design Guidelines**.
517
- - **UI/UX Pro Max**: From [Next Level Builder](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) premium design intelligence.
518
- - **Remotion**: From [Remotion](https://github.com/remotion-dev/skills) programmatic video creation.
519
- - **Subagent Development**: From [obra/superpowers](https://github.com/obra/superpowers) advanced implementation planning.
520
- - **Context7**: From [upstash/context7](https://github.com/upstash/context7) fresh library documentation fetcher.
521
- - **Audit Website**: From [squirrelscan/skills](https://github.com/squirrelscan/skills) professional website auditor.
522
- - **Convex Skills**: From [waynesutton/convexskills](https://github.com/waynesutton/convexskills) — complete Convex development suite including **Functions**, **Schema Validation**, **Realtime**, **Agents**, **File Storage**, **Migrations**, **HTTP Actions**, **Cron Jobs**, **Component Authoring**, **Best Practices**, **Security Audit**, **Security Check**, **Avoid Feature Creep**, and **Optimize Agent Context**.
523
- - **Anti-Gravity**: Custom skill for running Google's current Anti-Gravity CLI workflow for large-context review and analysis.
524
- - **Google Stitch Skills**: From [google-labs-code/stitch-skills](https://github.com/google-labs-code/stitch-skills) — Design-to-code suite including **design-md**, **enhance-prompt**, **stitch-loop**, **react-components**, and **shadcn-ui**.
525
- - **Jules**: From [sanjay3290/ai-skills](https://github.com/sanjay3290/ai-skills) delegate coding tasks to Google Jules AI agent.
526
- - **Subagent Execution**: Built on **[`pi-subagents`](https://github.com/nicobailon/pi-subagents)** by **Nico Bailon** — providing the underlying Pi extension for delegated subagent runs (result rendering, live progress, single/parallel/chain execution, session/artifact handling, and related subagent tooling), upon which Takomi adds its own lifecycle orchestration, model-routing policy, and workflow metadata.
527
- - **Takomi Interview / Todo Optional Packs**: Optional setup integrates **[`@juicesharp/rpiv-ask-user-question`](https://github.com/juicesharp/rpiv-mono/tree/main/packages/rpiv-ask-user-question)** and **[`@juicesharp/rpiv-todo`](https://github.com/juicesharp/rpiv-mono/tree/main/packages/rpiv-todo)** by **juicesharp** MIT-licensed Pi extensions for structured user questions and live todo overlays.
528
- - **Takomi Browser QA Optional Pack**: Optional setup can install **[`pi-chrome`](https://github.com/tianrendong/pi-chrome)** by **tianrendong** an MIT-licensed Pi extension for explicitly authorized Chrome/browser automation.
529
- - **Takomi Doc Preview Optional Pack**: Optional setup can install **[`pi-markdown-preview`](https://github.com/omaclaren/pi-markdown-preview)** by **omaclaren** an MIT-licensed Pi extension for terminal/browser/PDF markdown and LaTeX previews.
530
- - **Context Mode Research / Optional Power User Tooling**: **[`context-mode`](https://github.com/mksglu/context-mode)** by **Mert Koseoğlu** is credited as an external context-window and session-continuity project. It is not bundled as a Takomi default; users can install/evaluate it separately under its own license.
531
- - **Git Commit Generation**: From the **[`kilocode`](https://github.com/Kilo-Org/kilocode)** repository by **Kilo-Org** (specifically, [git-commit-generation.md](https://github.com/Kilo-Org/kilocode/blob/main/packages/kilo-docs/pages/code-with-ai/features/git-commit-generation.md)) enabling automated, high-quality conventional git commit messages based on staged changes.
532
-
533
- ## 📄 License
534
-
535
- This repository contains workflow protocols and prompts. Feel free to use, modify, and share. The goal is to improve AI-human collaboration for everyone.
310
+ <details>
311
+ <summary><strong>🙏 Acknowledgements</strong></summary>
312
+
313
+ Takomi-original skills, workflows, and runtime extensions — including `21st-dev-components` — are authored and maintained by **J StaR Films Studios**.
314
+
315
+ | Source | Skills / Packages |
316
+ |--------|-------------------|
317
+ | **[Pi](https://github.com/earendil-works/pi)** by Mario Zechner / Earendil Works | MIT-licensed coding-agent runtime powering the Pi-native Takomi harness |
318
+ | **[Anthropic Skills](https://github.com/anthropics/skills)** | Office Suite (PDF/DOCX/PPTX/XLSX), Frontend Design, Webapp Testing, Algorithmic Art, Monorepo Management, Skill Creator |
319
+ | **[Inference.sh](https://github.com/inference-sh/skills)** | Marketing Videos, Voice Cloning, Social Content, Twitter Automation, Product Photography, Prompt Engineering |
320
+ | **[Marketing Skills](https://github.com/coreyhaines31/marketingskills)** | Copywriting, Pricing Strategy, Social Strategy, Programmatic SEO, Marketing Ideas |
321
+ | **[Expo](https://github.com/expo/skills)** | Building Native UI, Upgrading Expo |
322
+ | **[Vercel AI SDK](https://github.com/vercel/ai)** | AI SDK reference, Web Design Guidelines |
323
+ | **[UI/UX Pro Max](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill)** | Premium design intelligence |
324
+ | **[Remotion](https://github.com/remotion-dev/skills)** | Programmatic video creation |
325
+ | **[Subagent Development](https://github.com/obra/superpowers)** | Advanced implementation planning |
326
+ | **[Context7](https://github.com/upstash/context7)** | Library documentation fetcher |
327
+ | **[Audit Website](https://github.com/squirrelscan/skills)** | Professional website auditor |
328
+ | **[Convex Skills](https://github.com/waynesutton/convexskills)** | Full Convex suite (Functions, Schema, Realtime, Agents, File Storage, Migrations, HTTP Actions, Cron, Components, Security) |
329
+ | **[Google Stitch](https://github.com/google-labs-code/stitch-skills)** | Design-to-code suite (design-md, enhance-prompt, stitch-loop, react-components, shadcn-ui) |
330
+ | **[Jules](https://github.com/sanjay3290/ai-skills)** | Google Jules AI agent delegation |
331
+ | **[pi-subagents](https://github.com/nicobailon/pi-subagents)** by Nico Bailon | Pi extension for delegated subagent runs |
332
+ | **[rpiv-ask-user-question](https://github.com/juicesharp/rpiv-mono)** by juicesharp | Structured user questions (optional Pi pack) |
333
+ | **[rpiv-todo](https://github.com/juicesharp/rpiv-mono)** by juicesharp | Live todo overlays (optional Pi pack) |
334
+ | **[pi-chrome](https://github.com/tianrendong/pi-chrome)** by tianrendong | Browser automation (optional Pi pack) |
335
+ | **[pi-markdown-preview](https://github.com/omaclaren/pi-markdown-preview)** by omaclaren | Markdown/LaTeX previews (optional Pi pack) |
336
+ | **[context-mode](https://github.com/mksglu/context-mode)** by Mert Koseoğlu | External context-window project (not bundled) |
337
+ | **[kilocode](https://github.com/Kilo-Org/kilocode)** by Kilo-Org | Git commit generation |
338
+ | **[pr-comment-fix](https://gist.github.com/GSonofNun/35c67304c35dac7d6b43308b5371f671)** | PR review comment automation |
339
+
340
+ </details>
341
+
342
+ ## License
343
+
344
+ Takomi is licensed under the [ISC License](LICENSE). Feel free to use, modify, and share. The goal is to improve AI-human collaboration for everyone.
536
345
 
537
346
  ---
538
347