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.
- package/.agents/plugins/marketplace.json +32 -0
- package/.pi/agents/architect.md +4 -2
- package/.pi/agents/designer.md +2 -0
- package/.pi/agents/orchestrator.md +9 -9
- package/.pi/prompts/design-prompt.md +3 -1
- package/.pi/prompts/genesis-prompt.md +2 -0
- package/.pi/prompts/takomi-prompt.md +10 -9
- package/README.md +218 -409
- package/assets/.agent/skills/takomi-flow/SKILL.md +244 -0
- package/assets/.agent/workflows/README.md +3 -3
- package/assets/.agent/workflows/mode-architect.md +7 -5
- package/assets/.agent/workflows/vibe-design.md +3 -1
- package/assets/.agent/workflows/vibe-genesis.md +2 -0
- package/assets/Takomi-Agents/custom_modes.yaml +1253 -1252
- package/assets/Takomi-Agents/vibe-architect.yaml +11 -6
- package/assets/Takomi-Agents/vibe-orchestrator.yaml +2 -2
- package/docs/features/TakomiFlow_Portable_Plugin.md +82 -0
- package/docs/takomi-flow-onboarding.md +86 -0
- package/docs/takomi-flow-public-distribution.md +94 -0
- package/package.json +19 -2
- package/plugins/takomi-codex/.codex-plugin/plugin.json +37 -0
- package/plugins/takomi-codex/assets/composer-icon.png +0 -0
- package/plugins/takomi-codex/assets/logo-dark.png +0 -0
- package/plugins/takomi-codex/assets/logo.png +0 -0
- package/plugins/takomi-codex/scripts/takomi-board.ps1 +197 -0
- package/plugins/takomi-codex/scripts/takomi-detect.ps1 +125 -0
- package/plugins/takomi-codex/scripts/takomi-doctor.ps1 +88 -0
- package/plugins/takomi-codex/scripts/takomi-harness.ps1 +52 -0
- package/plugins/takomi-codex/scripts/takomi-pi-dispatch.ps1 +93 -0
- package/plugins/takomi-codex/scripts/takomi-policy.ps1 +108 -0
- package/plugins/takomi-codex/skills/takomi-codex/SKILL.md +194 -0
- package/plugins/takomi-flow/.codex-plugin/plugin.json +36 -0
- package/plugins/takomi-flow/.mcp.json +11 -0
- package/plugins/takomi-flow/assets/capabilities.json +203 -0
- package/plugins/takomi-flow/assets/collection.schema.json +29 -0
- package/plugins/takomi-flow/assets/composer-icon.png +0 -0
- package/plugins/takomi-flow/assets/examples.json +94 -0
- package/plugins/takomi-flow/assets/logo-dark.png +0 -0
- package/plugins/takomi-flow/assets/logo.png +0 -0
- package/plugins/takomi-flow/assets/request.schema.json +91 -0
- package/plugins/takomi-flow/assets/result.schema.json +46 -0
- package/plugins/takomi-flow/assets/templates/image-request.json +17 -0
- package/plugins/takomi-flow/assets/templates/video-request.json +19 -0
- package/plugins/takomi-flow/package.json +38 -0
- package/plugins/takomi-flow/pnpm-lock.yaml +813 -0
- package/plugins/takomi-flow/references/flow-provider-contract.md +349 -0
- package/plugins/takomi-flow/scripts/lib/agent-plan.mjs +140 -0
- package/plugins/takomi-flow/scripts/lib/api.mjs +113 -0
- package/plugins/takomi-flow/scripts/lib/args.mjs +66 -0
- package/plugins/takomi-flow/scripts/lib/audit.mjs +65 -0
- package/plugins/takomi-flow/scripts/lib/browser.mjs +78 -0
- package/plugins/takomi-flow/scripts/lib/capabilities.mjs +11 -0
- package/plugins/takomi-flow/scripts/lib/collect.mjs +53 -0
- package/plugins/takomi-flow/scripts/lib/commands.mjs +192 -0
- package/plugins/takomi-flow/scripts/lib/doctor.mjs +77 -0
- package/plugins/takomi-flow/scripts/lib/examples.mjs +17 -0
- package/plugins/takomi-flow/scripts/lib/flow-media.mjs +39 -0
- package/plugins/takomi-flow/scripts/lib/flow-outcome.mjs +115 -0
- package/plugins/takomi-flow/scripts/lib/flow-project-session.mjs +153 -0
- package/plugins/takomi-flow/scripts/lib/flow-ui.mjs +204 -0
- package/plugins/takomi-flow/scripts/lib/generation.mjs +190 -0
- package/plugins/takomi-flow/scripts/lib/inspect.mjs +81 -0
- package/plugins/takomi-flow/scripts/lib/mcp-prompts.mjs +39 -0
- package/plugins/takomi-flow/scripts/lib/mcp-resources.mjs +16 -0
- package/plugins/takomi-flow/scripts/lib/mcp-tools.mjs +165 -0
- package/plugins/takomi-flow/scripts/lib/media.mjs +78 -0
- package/plugins/takomi-flow/scripts/lib/observe.mjs +54 -0
- package/plugins/takomi-flow/scripts/lib/paths.mjs +37 -0
- package/plugins/takomi-flow/scripts/lib/playwright-loader.mjs +23 -0
- package/plugins/takomi-flow/scripts/lib/prompts.mjs +72 -0
- package/plugins/takomi-flow/scripts/lib/report.mjs +141 -0
- package/plugins/takomi-flow/scripts/lib/request-validator.mjs +73 -0
- package/plugins/takomi-flow/scripts/lib/request.mjs +66 -0
- package/plugins/takomi-flow/scripts/lib/resource-files.mjs +69 -0
- package/plugins/takomi-flow/scripts/lib/result.mjs +31 -0
- package/plugins/takomi-flow/scripts/lib/review.mjs +44 -0
- package/plugins/takomi-flow/scripts/lib/selftest.mjs +153 -0
- package/plugins/takomi-flow/scripts/lib/settings-plan.mjs +44 -0
- package/plugins/takomi-flow/scripts/lib/templates.mjs +37 -0
- package/plugins/takomi-flow/scripts/lib/trusted-chrome.mjs +67 -0
- package/plugins/takomi-flow/scripts/lib/workflow.mjs +56 -0
- package/plugins/takomi-flow/scripts/mcp-server.mjs +18 -0
- package/plugins/takomi-flow/scripts/mcp-smoke.mjs +144 -0
- package/plugins/takomi-flow/scripts/takomi-flow.mjs +17 -0
- package/plugins/takomi-flow/skills/takomi-flow/SKILL.md +244 -0
- package/plugins/takomi-flow/skills/takomi-flow/agents/openai.yaml +7 -0
- package/scripts/install-takomi-flow.ps1 +85 -0
- package/src/pi-takomi-core/orchestration.ts +1 -1
- package/src/pi-takomi-core/workflows.ts +4 -4
- 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
|
|
5
|
+
<p><em>The artisan's toolkit that transforms AI from chatbot to development partner</em></p>
|
|
6
|
+
|
|
7
|
+
[](https://www.npmjs.com/package/takomi)
|
|
8
|
+
[](https://www.npmjs.com/package/takomi)
|
|
9
|
+
[](https://github.com/JStaRFilms/VibeCode-Protocol-Suite)
|
|
10
|
+
[](https://github.com/JStaRFilms/VibeCode-Protocol-Suite/blob/main/LICENSE)
|
|
6
11
|
</div>
|
|
7
12
|
|
|
8
13
|
---
|
|
9
14
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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
|
-
##
|
|
25
|
+
## Features
|
|
18
26
|
|
|
19
|
-
|
|
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
|
-
|
|
22
|
-
npm install -g takomi
|
|
23
|
-
takomi setup pi
|
|
24
|
-
cd my-project
|
|
25
|
-
takomi
|
|
26
|
-
```
|
|
35
|
+
---
|
|
27
36
|
|
|
28
|
-
|
|
37
|
+
## Quick Start
|
|
29
38
|
|
|
30
39
|
```bash
|
|
31
|
-
|
|
32
|
-
|
|
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
|
-
|
|
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
|
-
|
|
43
|
-
takomi
|
|
44
|
-
takomi
|
|
45
|
-
takomi
|
|
46
|
-
takomi
|
|
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
|
-
|
|
54
|
+
<details>
|
|
55
|
+
<summary><strong>📋 More install options (Pi, Codex, per-project, browser)</strong></summary>
|
|
50
56
|
|
|
51
|
-
|
|
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
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
# Using npx
|
|
76
|
-
npx takomi install
|
|
60
|
+
takomi setup pi
|
|
61
|
+
cd my-project
|
|
62
|
+
takomi
|
|
77
63
|
```
|
|
78
64
|
|
|
79
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
78
|
+
| Field | Value |
|
|
79
|
+
|-------|-------|
|
|
80
|
+
| **Source** | `JStaRFilms/VibeCode-Protocol-Suite` |
|
|
81
|
+
| **Git ref** | `main` |
|
|
82
|
+
| **Sparse paths** | `.agents/plugins`<br>`plugins` |
|
|
103
83
|
|
|
104
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
100
|
+
Drop workflows into a single project without global install:
|
|
169
101
|
|
|
170
102
|
```bash
|
|
171
|
-
npx
|
|
103
|
+
npx takomi init
|
|
172
104
|
```
|
|
173
105
|
|
|
174
|
-
|
|
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
|
-
###
|
|
181
|
-
|
|
182
|
-
|
|
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
|
|
113
|
+
npx takomi install
|
|
190
114
|
```
|
|
191
115
|
|
|
192
|
-
|
|
116
|
+
### Browser-Based AI (ChatGPT, Claude.ai, Gemini)
|
|
193
117
|
|
|
194
|
-
|
|
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
|
-
|
|
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
|
-
|
|
131
|
+
</details>
|
|
199
132
|
|
|
200
|
-
|
|
133
|
+
<details>
|
|
134
|
+
<summary><strong>🔌 TakomiFlow (Google Flow Assets)</strong></summary>
|
|
201
135
|
|
|
202
|
-
|
|
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
|
-
|
|
205
|
-
|
|
206
|
-
|
|
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
|
-
|
|
142
|
+
See [TakomiFlow Onboarding](docs/takomi-flow-onboarding.md) and [TakomiFlow Public Distribution](docs/takomi-flow-public-distribution.md).
|
|
215
143
|
|
|
216
|
-
|
|
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
|
-
|
|
146
|
+
---
|
|
228
147
|
|
|
229
|
-
|
|
148
|
+
## Skill Ecosystem
|
|
230
149
|
|
|
231
|
-
|
|
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
|
-
|
|
236
|
-
pnpm dlx takomi status
|
|
152
|
+
### Core Skills (Default Install)
|
|
237
153
|
|
|
238
|
-
|
|
239
|
-
|
|
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
|
-
###
|
|
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
|
-
|
|
162
|
+
```bash
|
|
163
|
+
# Interactive browser — pick what you need
|
|
164
|
+
takomi setup skills
|
|
251
165
|
|
|
252
|
-
|
|
166
|
+
# Or via the external skills CLI
|
|
167
|
+
npx -y skills add https://github.com/JStaRFilms/VibeCode-Protocol-Suite
|
|
168
|
+
```
|
|
253
169
|
|
|
254
|
-
|
|
170
|
+
<details>
|
|
171
|
+
<summary><strong>📚 Full skill categories</strong></summary>
|
|
255
172
|
|
|
256
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
**
|
|
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
|
-
|
|
189
|
+
**Skill Building / Prompting / Orchestration** — `skill-creator`, `prompt-engineering`, `subagent-driven-development`, `spawn-task`
|
|
278
190
|
|
|
279
|
-
|
|
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
|
-
|
|
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
|
-
###
|
|
197
|
+
### Project Lifecycle
|
|
317
198
|
|
|
318
|
-
|
|
319
|
-
|
|
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
|
|
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
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
| `/mode-
|
|
333
|
-
| `/mode-
|
|
334
|
-
| `/mode-
|
|
335
|
-
| `/mode-
|
|
336
|
-
| `/mode-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
|
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
|
|
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
|
|
227
|
+
| `/migrate` | Transfer context to a new session |
|
|
347
228
|
|
|
348
229
|
---
|
|
349
230
|
|
|
350
|
-
##
|
|
231
|
+
## Supported IDEs
|
|
351
232
|
|
|
352
|
-
|
|
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
|
-
|
|
356
|
-
|
|
357
|
-
|
|
|
358
|
-
|
|
359
|
-
|
|
|
360
|
-
|
|
|
361
|
-
|
|
|
362
|
-
|
|
|
363
|
-
|
|
|
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
|
-
|
|
245
|
+
<details>
|
|
246
|
+
<summary><strong>🔧 CLI reference</strong></summary>
|
|
369
247
|
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
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
|
-
|
|
261
|
+
</details>
|
|
378
262
|
|
|
379
|
-
|
|
263
|
+
<details>
|
|
264
|
+
<summary><strong>🧩 Context Manager (Pi)</strong></summary>
|
|
380
265
|
|
|
381
|
-
|
|
266
|
+
Takomi ships a Pi-native `takomi-context-manager` extension that reduces prompt bloat with progressive context loading:
|
|
382
267
|
|
|
383
|
-
-
|
|
384
|
-
-
|
|
385
|
-
-
|
|
386
|
-
-
|
|
387
|
-
-
|
|
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
|
-
>
|
|
274
|
+
</details>
|
|
390
275
|
|
|
391
276
|
---
|
|
392
277
|
|
|
393
|
-
##
|
|
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
|
-
|
|
427
|
-
|
|
428
|
-
|
|
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
|
-
##
|
|
288
|
+
## Philosophy
|
|
450
289
|
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
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
|
-
##
|
|
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.
|
|
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
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
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
|
|