takomi 2.1.5 → 2.1.6
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/README.md +1 -2
- package/package.json +1 -1
- package/src/harness.js +2 -2
package/README.md
CHANGED
|
@@ -156,9 +156,8 @@ Takomi v2.0 introduces the **Global Skills Router** — install skills once, and
|
|
|
156
156
|
| **Antigravity** | `~/.gemini/antigravity/skills/` | `~/.gemini/antigravity/global_workflows/` |
|
|
157
157
|
| **KiloCode** | `~/.kilocode/skills/` | `~/.kilocode/workflows/` |
|
|
158
158
|
| **Windsurf** | `~/.codeium/windsurf/skills/` | `~/.codeium/windsurf/global_workflows/` |
|
|
159
|
-
| **
|
|
159
|
+
| **Global agents-compatible CLIs** _(e.g., Codex, Gemini CLI)_ | `~/.agents/skills/` | _(skills only)_ |
|
|
160
160
|
| **Cursor** | `~/.cursor/skills/` | _(uses rules)_ |
|
|
161
|
-
| **Gemini CLI** | `~/.agents/skills/` | _(skills only)_ |
|
|
162
161
|
|
|
163
162
|
### CLI Commands
|
|
164
163
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "takomi",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.6",
|
|
4
4
|
"description": "🎯 Stop wrestling with AI. Start building with purpose. The artisan's toolkit for agent workflows, Codex skills, and original Takomi capabilities like 21st.dev integration.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/harness.js
CHANGED
|
@@ -80,7 +80,7 @@ export const HARNESS_MAP = {
|
|
|
80
80
|
return fs.existsSync(this.rootPath);
|
|
81
81
|
},
|
|
82
82
|
targets: {
|
|
83
|
-
skills: path.join(HOME, '.
|
|
83
|
+
skills: path.join(HOME, '.agents', 'skills'),
|
|
84
84
|
workflows: null,
|
|
85
85
|
yamls: null,
|
|
86
86
|
},
|
|
@@ -107,7 +107,7 @@ export const HARNESS_MAP = {
|
|
|
107
107
|
return fs.existsSync(this.rootPath) && !fs.existsSync(path.join(HOME, '.gemini', 'antigravity'));
|
|
108
108
|
},
|
|
109
109
|
targets: {
|
|
110
|
-
skills: path.join(HOME, '.
|
|
110
|
+
skills: path.join(HOME, '.agents', 'skills'),
|
|
111
111
|
workflows: null,
|
|
112
112
|
yamls: null,
|
|
113
113
|
},
|