@zenku/agent-kit 0.1.9 → 0.1.11
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 +7 -7
- package/package.json +1 -1
- package/personas/zenku.persona +0 -0
- package/skills/1password.skill +0 -0
- package/skills/apple-notes.skill +0 -0
- package/skills/apple-reminders.skill +0 -0
- package/skills/bear-notes.skill +0 -0
- package/skills/blogwatcher.skill +0 -0
- package/skills/blucli.skill +0 -0
- package/skills/camsnap.skill +0 -0
- package/skills/eightctl.skill +0 -0
- package/skills/food-order.skill +0 -0
- package/skills/frontend-design.skill +0 -0
- package/skills/gemini.skill +0 -0
- package/skills/gifgrep.skill +0 -0
- package/skills/github.skill +0 -0
- package/skills/gog.skill +0 -0
- package/skills/goplaces.skill +0 -0
- package/skills/himalaya.skill +0 -0
- package/skills/imsg.skill +0 -0
- package/skills/local-places.skill +0 -0
- package/skills/mcporter.skill +0 -0
- package/skills/nano-banana-pro.skill +0 -0
- package/skills/nano-pdf.skill +0 -0
- package/skills/notion.skill +0 -0
- package/skills/obsidian.skill +0 -0
- package/skills/openai-image-gen.skill +0 -0
- package/skills/openai-whisper-api.skill +0 -0
- package/skills/openai-whisper.skill +0 -0
- package/skills/openhue.skill +0 -0
- package/skills/oracle.skill +0 -0
- package/skills/ordercli.skill +0 -0
- package/skills/peekaboo.skill +0 -0
- package/skills/sag.skill +0 -0
- package/skills/sherpa-onnx-tts.skill +0 -0
- package/skills/skill-creator.skill +0 -0
- package/skills/songsee.skill +0 -0
- package/skills/sonoscli.skill +0 -0
- package/skills/spotify-player.skill +0 -0
- package/skills/summarize.skill +0 -0
- package/skills/things-mac.skill +0 -0
- package/skills/tmux.skill +0 -0
- package/skills/trello.skill +0 -0
- package/skills/video-frames.skill +0 -0
- package/skills/wacli.skill +0 -0
- package/skills/weather.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
CHANGED
|
@@ -956,37 +956,37 @@
|
|
|
956
956
|
"name": "code-architect",
|
|
957
957
|
"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",
|
|
958
958
|
"model": "inherit",
|
|
959
|
-
"color": "
|
|
959
|
+
"color": "#98c379"
|
|
960
960
|
},
|
|
961
961
|
"code-explorer": {
|
|
962
962
|
"name": "code-explorer",
|
|
963
963
|
"description": "Deeply analyzes existing codebase features by tracing execution paths, mapping architecture layers, understanding patterns and abstractions, and documenting dependencies to inform new development",
|
|
964
964
|
"model": "inherit",
|
|
965
|
-
"color": "
|
|
965
|
+
"color": "#e5c07b"
|
|
966
966
|
},
|
|
967
967
|
"code-reviewer": {
|
|
968
968
|
"name": "code-reviewer",
|
|
969
969
|
"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",
|
|
970
970
|
"model": "inherit",
|
|
971
|
-
"color": "
|
|
971
|
+
"color": "#e06c75"
|
|
972
972
|
},
|
|
973
973
|
"code-simplifier": {
|
|
974
974
|
"name": "code-simplifier",
|
|
975
975
|
"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>\n",
|
|
976
976
|
"model": "inherit",
|
|
977
|
-
"color": "
|
|
977
|
+
"color": "#c678dd"
|
|
978
978
|
},
|
|
979
979
|
"silent-failure-hunter": {
|
|
980
980
|
"name": "silent-failure-hunter",
|
|
981
981
|
"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>\n",
|
|
982
982
|
"model": "inherit",
|
|
983
|
-
"color": "
|
|
983
|
+
"color": "#e5c07b"
|
|
984
984
|
},
|
|
985
985
|
"skill-reviewer": {
|
|
986
986
|
"name": "skill-reviewer",
|
|
987
987
|
"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>\n",
|
|
988
988
|
"model": "inherit",
|
|
989
|
-
"color": "
|
|
989
|
+
"color": "#56b6c2",
|
|
990
990
|
"tools": ["Read", "Grep", "Glob"]
|
|
991
991
|
}
|
|
992
992
|
},
|
|
@@ -995,7 +995,7 @@
|
|
|
995
995
|
"name": "zenku",
|
|
996
996
|
"description": "A focused, minimal coding assistant with a Japanese zen aesthetic",
|
|
997
997
|
"model": "inherit",
|
|
998
|
-
"color": "
|
|
998
|
+
"color": "#56b6c2"
|
|
999
999
|
}
|
|
1000
1000
|
}
|
|
1001
1001
|
}
|
package/package.json
CHANGED
package/personas/zenku.persona
CHANGED
|
Binary file
|
package/skills/1password.skill
CHANGED
|
Binary file
|
package/skills/apple-notes.skill
CHANGED
|
Binary file
|
|
Binary file
|
package/skills/bear-notes.skill
CHANGED
|
Binary file
|
package/skills/blogwatcher.skill
CHANGED
|
Binary file
|
package/skills/blucli.skill
CHANGED
|
Binary file
|
package/skills/camsnap.skill
CHANGED
|
Binary file
|
package/skills/eightctl.skill
CHANGED
|
Binary file
|
package/skills/food-order.skill
CHANGED
|
Binary file
|
|
Binary file
|
package/skills/gemini.skill
CHANGED
|
Binary file
|
package/skills/gifgrep.skill
CHANGED
|
Binary file
|
package/skills/github.skill
CHANGED
|
Binary file
|
package/skills/gog.skill
CHANGED
|
Binary file
|
package/skills/goplaces.skill
CHANGED
|
Binary file
|
package/skills/himalaya.skill
CHANGED
|
Binary file
|
package/skills/imsg.skill
CHANGED
|
Binary file
|
|
Binary file
|
package/skills/mcporter.skill
CHANGED
|
Binary file
|
|
Binary file
|
package/skills/nano-pdf.skill
CHANGED
|
Binary file
|
package/skills/notion.skill
CHANGED
|
Binary file
|
package/skills/obsidian.skill
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/skills/openhue.skill
CHANGED
|
Binary file
|
package/skills/oracle.skill
CHANGED
|
Binary file
|
package/skills/ordercli.skill
CHANGED
|
Binary file
|
package/skills/peekaboo.skill
CHANGED
|
Binary file
|
package/skills/sag.skill
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/skills/songsee.skill
CHANGED
|
Binary file
|
package/skills/sonoscli.skill
CHANGED
|
Binary file
|
|
Binary file
|
package/skills/summarize.skill
CHANGED
|
Binary file
|
package/skills/things-mac.skill
CHANGED
|
Binary file
|
package/skills/tmux.skill
CHANGED
|
Binary file
|
package/skills/trello.skill
CHANGED
|
Binary file
|
|
Binary file
|
package/skills/wacli.skill
CHANGED
|
Binary file
|
package/skills/weather.skill
CHANGED
|
Binary file
|
|
Binary file
|