@actrun_ai/tastekit-cli 0.1.0 → 0.1.1
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 +96 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
# @actrun_ai/tastekit-cli
|
|
2
|
+
|
|
3
|
+
CLI for [TasteKit](https://github.com/philipbankier/tastekit) — compile your taste into portable AI agent artifacts.
|
|
4
|
+
|
|
5
|
+
**One interview. 32+ compatible runtimes.**
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# Use directly (no install)
|
|
11
|
+
npx @actrun_ai/tastekit-cli init
|
|
12
|
+
|
|
13
|
+
# Or install globally
|
|
14
|
+
npm install -g @actrun_ai/tastekit-cli
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Quick Start
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
# 1. Create a workspace (pick domain + depth + LLM provider)
|
|
21
|
+
tastekit init
|
|
22
|
+
|
|
23
|
+
# 2. Run the LLM-driven onboarding interview
|
|
24
|
+
tastekit onboard
|
|
25
|
+
|
|
26
|
+
# 3. Compile your taste into artifacts
|
|
27
|
+
tastekit compile
|
|
28
|
+
|
|
29
|
+
# 4. Export to your runtime
|
|
30
|
+
tastekit export --target claude-code
|
|
31
|
+
tastekit export --target openclaw
|
|
32
|
+
tastekit export --target agents-md
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Commands
|
|
36
|
+
|
|
37
|
+
| Command | What it does |
|
|
38
|
+
|---------|-------------|
|
|
39
|
+
| `tastekit init` | Create workspace. Pick domain, depth, LLM provider |
|
|
40
|
+
| `tastekit onboard` | LLM-driven adaptive interview (voice mode optional) |
|
|
41
|
+
| `tastekit compile` | Generate artifacts from session (supports `--resume`) |
|
|
42
|
+
| `tastekit export` | Export to claude-code, openclaw, manus, autopilots, agents-md, agent-file |
|
|
43
|
+
| `tastekit skills` | list, lint, graph, pack, report, inspect, history, rollback |
|
|
44
|
+
| `tastekit drift` | detect, review, accept, reject — behavioral drift monitoring |
|
|
45
|
+
| `tastekit mcp` | add, list, inspect, bind — MCP tool management |
|
|
46
|
+
| `tastekit trust` | init, pin-mcp, pin-skill-source, audit |
|
|
47
|
+
| `tastekit eval` | run, replay — evaluation packs |
|
|
48
|
+
| `tastekit import` | Import from SOUL.md or Agent File (.af) |
|
|
49
|
+
| `tastekit completion` | Shell completions for bash, zsh, fish |
|
|
50
|
+
|
|
51
|
+
## Domains
|
|
52
|
+
|
|
53
|
+
| Domain | Dimensions | Description |
|
|
54
|
+
|--------|-----------|-------------|
|
|
55
|
+
| General Agent | 6-18 | Cross-functional agent configuration |
|
|
56
|
+
| Development Agent | 9-28 | Engineering philosophy, code quality, testing, commits |
|
|
57
|
+
| Content Agent | 7-23 | Brand voice, editorial standards, publishing |
|
|
58
|
+
| Research Agent | 7-25 | Methodology, source evaluation, synthesis |
|
|
59
|
+
| Sales Agent | 7-25 | Sales philosophy, objection handling, pipeline |
|
|
60
|
+
| Support Agent | 7-25 | Escalation criteria, empathy, SLA targets |
|
|
61
|
+
|
|
62
|
+
Each domain supports 3 depth tiers: quick (~5 min), guided (~15 min), operator (~30 min).
|
|
63
|
+
|
|
64
|
+
## Output
|
|
65
|
+
|
|
66
|
+
After `compile`, your `.tastekit/` directory contains:
|
|
67
|
+
|
|
68
|
+
```
|
|
69
|
+
.tastekit/
|
|
70
|
+
├── self/constitution.v1.json # Principles, tone, tradeoffs, taboos
|
|
71
|
+
├── self/guardrails.v1.yaml # Permissions, approvals, rate limits
|
|
72
|
+
├── self/memory.v1.yaml # Retention policy, salience rules
|
|
73
|
+
├── knowledge/skills/ # SKILL.md files (Agent Skills standard)
|
|
74
|
+
├── knowledge/playbooks/ # Multi-step workflows
|
|
75
|
+
└── ops/derivation.v1.yaml # Compilation state
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
After `export --target claude-code`:
|
|
79
|
+
|
|
80
|
+
```
|
|
81
|
+
export/
|
|
82
|
+
├── CLAUDE.md # System instructions
|
|
83
|
+
├── .claude/settings.local.json # Hooks + permissions + defaultMode
|
|
84
|
+
├── .tastekit/hooks/*.sh # 5 lifecycle hooks
|
|
85
|
+
└── skills/ # Agent Skills-compatible directory
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
## Part of TasteKit
|
|
89
|
+
|
|
90
|
+
- Core library: [`@actrun_ai/tastekit-core`](https://www.npmjs.com/package/@actrun_ai/tastekit-core)
|
|
91
|
+
- Adapters: [`@actrun_ai/tastekit-adapters`](https://www.npmjs.com/package/@actrun_ai/tastekit-adapters)
|
|
92
|
+
- Voice: [`@actrun_ai/tastekit-voice`](https://www.npmjs.com/package/@actrun_ai/tastekit-voice)
|
|
93
|
+
|
|
94
|
+
## License
|
|
95
|
+
|
|
96
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actrun_ai/tastekit-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "TasteKit CLI - command-line interface for taste compilation and management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "TasteKit Contributors",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/
|
|
10
|
+
"url": "https://github.com/philipbankier/tastekit.git",
|
|
11
11
|
"directory": "packages/cli"
|
|
12
12
|
},
|
|
13
13
|
"publishConfig": {
|