@zenku/agent-kit 0.1.5 → 0.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 ADDED
@@ -0,0 +1,138 @@
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
+ ### Skills
8
+
9
+ | Name | Description |
10
+ | ----------------- | --------------------------------------------------------------------------------- |
11
+ | `frontend-design` | Create distinctive, production-grade frontend interfaces with high design quality |
12
+ | `skill-creator` | Guide for creating effective skills that extend agent capabilities |
13
+ | `zenku-kanban` | Manage kanban projects, issues, labels, and comments via the zenku CLI |
14
+
15
+ ### Agents
16
+
17
+ | Name | Description |
18
+ | ----------------------- | ------------------------------------------------------------------------------------- |
19
+ | `code-architect` | Designs feature architectures by analyzing codebase patterns and conventions |
20
+ | `code-explorer` | Deeply analyzes codebase features by tracing execution paths and mapping architecture |
21
+ | `code-reviewer` | Reviews code for bugs, security vulnerabilities, and quality issues |
22
+ | `code-simplifier` | Simplifies code for clarity and maintainability while preserving functionality |
23
+ | `silent-failure-hunter` | Identifies silent failures, inadequate error handling, and suppressed errors |
24
+ | `skill-reviewer` | Reviews skill quality and ensures skills follow best practices |
25
+
26
+ ### Personas
27
+
28
+ | Name | Description |
29
+ | ------- | ----------------------------------------------------------------- |
30
+ | `zenku` | A focused, minimal coding assistant with a Japanese zen aesthetic |
31
+
32
+ ## Installation
33
+
34
+ Install the package globally:
35
+
36
+ ```bash
37
+ npm install -g @zenku/agent-kit
38
+ ```
39
+
40
+ Then copy the artifacts you want into your project.
41
+
42
+ ### Claude Code
43
+
44
+ ```bash
45
+ KIT=$(npm root -g)/@zenku/agent-kit
46
+
47
+ # Skills → .claude/skills/
48
+ mkdir -p .claude/skills
49
+ unzip -o "$KIT/skills/frontend-design.skill" -d .claude/skills/frontend-design/
50
+
51
+ # Agents → .claude/agents/
52
+ mkdir -p .claude/agents
53
+ unzip -o "$KIT/agents/code-reviewer.agent" -d .claude/agents/
54
+
55
+ # Personas → .claude/agents/ (personas are used as main thread agents)
56
+ unzip -o "$KIT/personas/zenku.persona" -d .claude/agents/
57
+ ```
58
+
59
+ To use a persona as your default agent:
60
+
61
+ ```bash
62
+ # Via CLI flag
63
+ claude --agent zenku
64
+
65
+ # Or set in .claude/settings.json
66
+ {
67
+ "agent": "zenku"
68
+ }
69
+ ```
70
+
71
+ ### OpenCode
72
+
73
+ ```bash
74
+ KIT=$(npm root -g)/@zenku/agent-kit
75
+
76
+ # Skills → .opencode/skills/
77
+ mkdir -p .opencode/skills
78
+ unzip -o "$KIT/skills/frontend-design.skill" -d .opencode/skills/frontend-design/
79
+
80
+ # Agents → .opencode/agents/
81
+ mkdir -p .opencode/agents
82
+ unzip -o "$KIT/agents/code-reviewer.agent" -d .opencode/agents/
83
+ unzip -o "$KIT/personas/zenku.persona" -d .opencode/agents/
84
+ ```
85
+
86
+ ### Manual
87
+
88
+ Each `.skill`, `.agent`, and `.persona` file is a standard zip archive. You can unzip them with any tool:
89
+
90
+ ```bash
91
+ unzip frontend-design.skill -d frontend-design/
92
+ unzip code-reviewer.agent
93
+ unzip zenku.persona
94
+ ```
95
+
96
+ Inside each archive is one or more `.md` files with YAML frontmatter and a markdown body.
97
+
98
+ ## Usage
99
+
100
+ **Skills** are invoked with slash commands (e.g., `/frontend-design`) or triggered automatically when the agent detects a matching task.
101
+
102
+ **Agents** are specialized sub-agents spawned for specific tasks. They appear in agent selection when placed in the agents directory.
103
+
104
+ **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.
105
+
106
+ ## Uninstall
107
+
108
+ Remove the files you copied:
109
+
110
+ ```bash
111
+ # Claude Code
112
+ rm -rf .claude/skills/frontend-design/
113
+ rm -f .claude/agents/code-reviewer.md
114
+ rm -f .claude/agents/zenku.md
115
+
116
+ # OpenCode
117
+ rm -rf .opencode/skills/frontend-design/
118
+ rm -f .opencode/agents/code-reviewer.md
119
+ rm -f .opencode/agents/zenku.md
120
+ ```
121
+
122
+ ## Update
123
+
124
+ When a new version is published:
125
+
126
+ ```bash
127
+ npm update -g @zenku/agent-kit
128
+ ```
129
+
130
+ Then re-copy the artifacts you use (see Installation above). New versions may add, update, or remove artifacts — check the manifest for changes:
131
+
132
+ ```bash
133
+ cat $(npm root -g)/@zenku/agent-kit/manifest.json
134
+ ```
135
+
136
+ ## Manifest
137
+
138
+ 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.6",
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