@zenku/agent-kit 0.1.4 → 0.1.5
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/code-architect.agent +0 -0
- package/agents/code-explorer.agent +0 -0
- package/agents/code-reviewer.agent +0 -0
- package/agents/code-simplifier.agent +0 -0
- package/agents/silent-failure-hunter.agent +0 -0
- package/agents/skill-reviewer.agent +0 -0
- package/manifest.json +55 -0
- package/package.json +3 -2
- package/skills/frontend-design.skill +0 -0
- package/skills/skill-creator.skill +0 -0
- package/skills/zenku-kanban.skill +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/manifest.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"skills": {
|
|
3
|
+
"frontend-design": {
|
|
4
|
+
"name": "frontend-design",
|
|
5
|
+
"description": "Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics."
|
|
6
|
+
},
|
|
7
|
+
"skill-creator": {
|
|
8
|
+
"name": "skill-creator",
|
|
9
|
+
"description": "Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends the agent's capabilities with specialized knowledge, workflows, or tool integrations."
|
|
10
|
+
},
|
|
11
|
+
"zenku-kanban": {
|
|
12
|
+
"name": "zenku-kanban",
|
|
13
|
+
"description": "Manage kanban projects, issues, labels, comments, and links via the zenku CLI. Use when the user wants to create/update/list kanban issues, manage projects, track work items, add comments, link issues, or manage labels. Also covers CLI installation and authentication (login/logout/whoami/profiles) as prerequisites. Trigger when user mentions zenku, kanban, issues, sprints, project boards, or task tracking via CLI."
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"agents": {
|
|
17
|
+
"code-architect": {
|
|
18
|
+
"name": "code-architect",
|
|
19
|
+
"description": "Designs feature architectures by analyzing existing codebase patterns and conventions, then providing comprehensive implementation blueprints with specific files to create/modify, component designs, data flows, and build sequences",
|
|
20
|
+
"model": "inherit",
|
|
21
|
+
"color": "green"
|
|
22
|
+
},
|
|
23
|
+
"code-explorer": {
|
|
24
|
+
"name": "code-explorer",
|
|
25
|
+
"description": "Deeply analyzes existing codebase features by tracing execution paths, mapping architecture layers, understanding patterns and abstractions, and documenting dependencies to inform new development",
|
|
26
|
+
"model": "inherit",
|
|
27
|
+
"color": "yellow"
|
|
28
|
+
},
|
|
29
|
+
"code-reviewer": {
|
|
30
|
+
"name": "code-reviewer",
|
|
31
|
+
"description": "Reviews code for bugs, logic errors, security vulnerabilities, code quality issues, and adherence to project conventions, using confidence-based filtering to report only high-priority issues that truly matter",
|
|
32
|
+
"model": "inherit",
|
|
33
|
+
"color": "red"
|
|
34
|
+
},
|
|
35
|
+
"code-simplifier": {
|
|
36
|
+
"name": "code-simplifier",
|
|
37
|
+
"description": "Use this agent when code has been written or modified and needs to be simplified for clarity, consistency, and maintainability while preserving all functionality. This agent should be triggered automatically after completing a coding task or writing a logical chunk of code. It simplifies code by following project best practices while retaining all functionality. The agent focuses only on recently modified code unless instructed otherwise.\n\nExamples:\n\n<example>\nContext: The assistant has just implemented a new feature that adds user authentication to an API endpoint.\nuser: \"Please add authentication to the /api/users endpoint\"\nassistant: \"I've implemented the authentication for the /api/users endpoint. Here's the code:\"\n<commentary>\nSince a logical chunk of code has been written (authentication feature), use the code-simplifier agent to improve the code's clarity and maintainability while preserving functionality.\n</commentary>\nassistant: \"Now let me use the code-simplifier agent to refine this implementation for better clarity and maintainability\"\n</example>\n\n<example>\nContext: The assistant has just fixed a bug by adding several conditional checks.\nuser: \"Fix the null pointer exception in the data processor\"\nassistant: \"I've added the necessary null checks to prevent the exception:\"\n<commentary>\nAfter modifying code to fix a bug, use the code-simplifier agent to ensure the fix follows best practices and maintains code quality.\n</commentary>\nassistant: \"Let me refine this bug fix using the code-simplifier agent to ensure it follows our best practices\"\n</example>\n\n<example>\nContext: The assistant has just refactored a function to improve performance.\nuser: \"Optimize the data sorting algorithm for better performance\"\nassistant: \"I've optimized the sorting algorithm. Here's the updated implementation:\"\n<commentary>\nAfter completing a performance optimization task, use the code-simplifier agent to ensure the optimized code is also clear and maintainable.\n</commentary>\nassistant: \"Now I'll use the code-simplifier agent to ensure the optimized code is also clear and follows our coding standards\"\n</example>",
|
|
38
|
+
"model": "inherit",
|
|
39
|
+
"color": "magenta"
|
|
40
|
+
},
|
|
41
|
+
"silent-failure-hunter": {
|
|
42
|
+
"name": "silent-failure-hunter",
|
|
43
|
+
"description": "Use this agent when reviewing code changes to identify silent failures, inadequate error handling, and inappropriate fallback behavior. This agent should be invoked proactively after completing a logical chunk of work that involves error handling, catch blocks, fallback logic, or any code that could potentially suppress errors.\n\n<example>\nContext: The user has just finished implementing a new feature that fetches data from an API with fallback behavior.\nuser: \"I've added error handling to the API client. Can you review it?\"\nassistant: \"Let me use the silent-failure-hunter agent to thoroughly examine the error handling in your changes.\"\n</example>\n\n<example>\nContext: The user has created a PR with changes that include try-catch blocks.\nuser: \"Please review PR #1234\"\nassistant: \"I'll use the silent-failure-hunter agent to check for any silent failures or inadequate error handling in this PR.\"\n</example>\n\n<example>\nContext: The user has just refactored error handling code.\nuser: \"I've updated the error handling in the authentication module\"\nassistant: \"Let me proactively use the silent-failure-hunter agent to ensure the error handling changes don't introduce silent failures.\"\n</example>",
|
|
44
|
+
"model": "inherit",
|
|
45
|
+
"color": "yellow"
|
|
46
|
+
},
|
|
47
|
+
"skill-reviewer": {
|
|
48
|
+
"name": "skill-reviewer",
|
|
49
|
+
"description": "Use this agent when the user has created or modified a skill and needs quality review, asks to \"review my skill\", \"check skill quality\", \"improve skill description\", or wants to ensure skill follows best practices. Trigger proactively after skill creation. Examples:\n\n<example>\nContext: User just created a new skill\nuser: \"I've created a PDF processing skill\"\nassistant: \"Great! Let me review the skill quality.\"\n<commentary>\nSkill created, proactively trigger skill-reviewer to ensure it follows best practices.\n</commentary>\nassistant: \"I'll use the skill-reviewer agent to review the skill.\"\n</example>\n\n<example>\nContext: User requests skill review\nuser: \"Review my skill and tell me how to improve it\"\nassistant: \"I'll use the skill-reviewer agent to analyze the skill quality.\"\n<commentary>\nExplicit skill review request triggers the agent.\n</commentary>\n</example>\n\n<example>\nContext: User modified skill description\nuser: \"I updated the skill description, does it look good?\"\nassistant: \"I'll use the skill-reviewer agent to review the changes.\"\n<commentary>\nSkill description modified, review for triggering effectiveness.\n</commentary>\n</example>",
|
|
50
|
+
"model": "inherit",
|
|
51
|
+
"color": "cyan",
|
|
52
|
+
"tools": "[\"Read\", \"Grep\", \"Glob\"]"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenku/agent-kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Agent kit (skills, agents, commands) for the Zenku ecosystem — works with Claude Code, OpenCode, and Codex CLI.",
|
|
5
5
|
"files": [
|
|
6
6
|
"skills",
|
|
7
|
-
"agents"
|
|
7
|
+
"agents",
|
|
8
|
+
"manifest.json"
|
|
8
9
|
],
|
|
9
10
|
"license": "SEE LICENSE IN LICENSE"
|
|
10
11
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|