@zenku/agent-kit 0.1.5 → 0.1.7

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 ADDED
@@ -0,0 +1,119 @@
1
+ # @zenku/agent-kit
2
+
3
+ Skills, agents, and personas for the Zenku ecosystem. Works with Claude Code, OpenCode, and Codex CLI.
4
+
5
+ ## Contents
6
+
7
+ The package includes **skills**, **agents**, and **personas**. To see what's available in your installed version:
8
+
9
+ ```bash
10
+ cat $(npm root -g)/@zenku/agent-kit/manifest.json
11
+ ```
12
+
13
+ ## Installation
14
+
15
+ Install the package globally:
16
+
17
+ ```bash
18
+ npm install -g @zenku/agent-kit
19
+ ```
20
+
21
+ Then copy the artifacts you want into your project.
22
+
23
+ ### Claude Code
24
+
25
+ ```bash
26
+ KIT=$(npm root -g)/@zenku/agent-kit
27
+
28
+ # Skills → .claude/skills/
29
+ mkdir -p .claude/skills
30
+ unzip -o "$KIT/skills/frontend-design.skill" -d .claude/skills/frontend-design/
31
+
32
+ # Agents → .claude/agents/
33
+ mkdir -p .claude/agents
34
+ unzip -o "$KIT/agents/code-reviewer.agent" -d .claude/agents/
35
+
36
+ # Personas → .claude/agents/ (personas are used as main thread agents)
37
+ unzip -o "$KIT/personas/zenku.persona" -d .claude/agents/
38
+ ```
39
+
40
+ To use a persona as your default agent:
41
+
42
+ ```bash
43
+ # Via CLI flag
44
+ claude --agent zenku
45
+
46
+ # Or set in .claude/settings.json
47
+ {
48
+ "agent": "zenku"
49
+ }
50
+ ```
51
+
52
+ ### OpenCode
53
+
54
+ ```bash
55
+ KIT=$(npm root -g)/@zenku/agent-kit
56
+
57
+ # Skills → .opencode/skills/
58
+ mkdir -p .opencode/skills
59
+ unzip -o "$KIT/skills/frontend-design.skill" -d .opencode/skills/frontend-design/
60
+
61
+ # Agents → .opencode/agents/
62
+ mkdir -p .opencode/agents
63
+ unzip -o "$KIT/agents/code-reviewer.agent" -d .opencode/agents/
64
+ unzip -o "$KIT/personas/zenku.persona" -d .opencode/agents/
65
+ ```
66
+
67
+ ### Manual
68
+
69
+ Each `.skill`, `.agent`, and `.persona` file is a standard zip archive. You can unzip them with any tool:
70
+
71
+ ```bash
72
+ unzip frontend-design.skill -d frontend-design/
73
+ unzip code-reviewer.agent
74
+ unzip zenku.persona
75
+ ```
76
+
77
+ Inside each archive is one or more `.md` files with YAML frontmatter and a markdown body.
78
+
79
+ ## Usage
80
+
81
+ **Skills** are invoked with slash commands (e.g., `/frontend-design`) or triggered automatically when the agent detects a matching task.
82
+
83
+ **Agents** are specialized sub-agents spawned for specific tasks. They appear in agent selection when placed in the agents directory.
84
+
85
+ **Personas** replace the default AI identity for the entire session. Set one as your main thread agent to change the assistant's personality, tone, and behavior.
86
+
87
+ ## Uninstall
88
+
89
+ Remove the files you copied:
90
+
91
+ ```bash
92
+ # Claude Code
93
+ rm -rf .claude/skills/frontend-design/
94
+ rm -f .claude/agents/code-reviewer.md
95
+ rm -f .claude/agents/zenku.md
96
+
97
+ # OpenCode
98
+ rm -rf .opencode/skills/frontend-design/
99
+ rm -f .opencode/agents/code-reviewer.md
100
+ rm -f .opencode/agents/zenku.md
101
+ ```
102
+
103
+ ## Update
104
+
105
+ When a new version is published:
106
+
107
+ ```bash
108
+ npm update -g @zenku/agent-kit
109
+ ```
110
+
111
+ Then re-copy the artifacts you use (see Installation above). New versions may add, update, or remove artifacts — check the manifest for changes:
112
+
113
+ ```bash
114
+ cat $(npm root -g)/@zenku/agent-kit/manifest.json
115
+ ```
116
+
117
+ ## Manifest
118
+
119
+ The `manifest.json` file at the package root lists all included artifacts with their frontmatter metadata. Use it to programmatically discover available skills, agents, and personas.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/manifest.json CHANGED
@@ -51,5 +51,13 @@
51
51
  "color": "cyan",
52
52
  "tools": "[\"Read\", \"Grep\", \"Glob\"]"
53
53
  }
54
+ },
55
+ "personas": {
56
+ "zenku": {
57
+ "name": "zenku",
58
+ "description": "A focused, minimal coding assistant with a Japanese zen aesthetic",
59
+ "model": "inherit",
60
+ "color": "cyan"
61
+ }
54
62
  }
55
63
  }
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@zenku/agent-kit",
3
- "version": "0.1.5",
4
- "description": "Agent kit (skills, agents, commands) for the Zenku ecosystem — works with Claude Code, OpenCode, and Codex CLI.",
3
+ "version": "0.1.7",
4
+ "description": "Agent kit (skills, agents, personas) for the Zenku ecosystem — works with Claude Code, OpenCode, and Codex CLI.",
5
5
  "files": [
6
6
  "skills",
7
7
  "agents",
8
+ "personas",
8
9
  "manifest.json"
9
10
  ],
10
11
  "license": "SEE LICENSE IN LICENSE"
Binary file
Binary file
Binary file
Binary file