Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By zlyv587
Development toolkit for GUI automation agents with /dev command (6-step workflow), 8 agents, and code review skill
npx claudepluginhub zlyv587/marketplace --plugin gui-agent-devUse this agent when adding new action types to the GUI agent, extending InputController capabilities, or designing new automation actions. Examples: <example> Context: User wants to add drag-and-drop support user: "I need to add a drag action for drag-and-drop operations" assistant: "I'll use the action-designer agent to help design the drag action with proper schema and implementation." <commentary> Adding new action types requires careful schema design and InputController integration. </commentary> </example> <example> Context: User wants to handle a specific UI pattern user: "How can I make the agent handle dropdown menus better?" assistant: "Let me use the action-designer agent to analyze if we need new actions or can improve existing ones for dropdown handling." <commentary> UI pattern handling may require new actions or combinations of existing ones. </commentary> </example> <example> Context: User is extending the ActionType enum user: "I'm adding a new action type, what do I need to consider?" assistant: "I'll help you design the complete action with the action-designer agent - schema, implementation, and prompt updates." <commentary> New action types need coordinated changes across multiple components. </commentary> </example>
Designs feature architectures by analyzing existing codebase patterns and conventions, then providing 2-3 solution options with implementation blueprints for user selection
Deeply analyzes existing codebase features by tracing execution paths, mapping architecture layers, understanding patterns and abstractions, and documenting dependencies to inform new development
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
Use this agent when working on context management, optimizing token usage, improving history compression, or debugging KV-cache efficiency. Examples: <example> Context: User is concerned about token costs or context window limits user: "The agent is using too many tokens, tasks are getting expensive" assistant: "I'll use the context-optimizer agent to analyze your token usage and suggest optimizations." <commentary> Token optimization is a core concern for long-running GUI automation tasks. </commentary> </example> <example> Context: User is working on context_manager.py user: "How can I make the compression more efficient?" assistant: "Let me analyze your context management with the context-optimizer agent to identify compression improvements." <commentary> Direct work on context management code benefits from specialized optimization analysis. </commentary> </example> <example> Context: User notices the agent forgetting earlier actions user: "The agent seems to forget what it did earlier in long tasks" assistant: "I'll use the context-optimizer agent to analyze how history is being managed and compressed." <commentary> Memory/history issues are context management problems requiring specialized analysis. </commentary> </example>
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Computer use toolkit for driving desktop environments through Claude's vision and action API with screenshot capture, mouse/keyboard control, and an autonomous agent loop
Build powerful, stateful CLI interfaces for any GUI application using the cli-anything harness methodology.
HelloAGENTS — The orchestration kernel that makes any AI CLI smarter. Adds intelligent routing, quality verification (Ralph Loop), safety guards, and notifications.
Agents for UI/UX design, accessibility, and user experience optimization
Multi-agent tmux dashboard with skills, hooks, and workflow automation
Claude Code の SubAgent(agents/*.md)を正しく定義するためのベストプラクティスガイド。 YAML frontmatter、ツール選択、3-Phase 構造、コンテキスト受け渡し、アンチパターンを網羅。 Use when: agents/*.md を書く、SubAgent 定義を改善する、エージェントの動作が想定外、 コンテキストが渡らない、ツール選択に迷う。 Triggers: "subagent", "agent definition", "agents/*.md", "エージェント定義", "サブエージェント", "3-Phase", "context passing", "コンテキスト渡し", "tool selection", "ツール選択", "subagent_type", "bypassPermissions"
Persistent memory for Claude Code using mem0 cloud API. Automatically captures and retrieves global user-level and project-level memories.
Check for updates to installed Claude Code plugins from the developer-kits marketplace
Automatically keeps CLAUDE.md synchronized with project state. Detects project type, analyzes current state, and proposes documentation updates.
A collection of plugins for Claude Code.
| Plugin | Version | Description | Category |
|---|---|---|---|
| claude-md-sync | 1.0.0 | Automatically keeps CLAUDE.md synchronized with project state. Detects project type, analyzes current state, and proposes documentation updates. | Productivity |
| claude-mem0 | 1.6.1 | Persistent memory for Claude Code using mem0 cloud API. Automatically captures and retrieves global user-level and project-level memories. | Productivity |
| gui-agent-dev | 1.1.0 | Development toolkit for GUI automation agents with /dev command (6-step workflow), 8 agents (5 domain + 3 workflow), and code review skill. | Development |
| plugin-updater | 1.0.0 | Check for updates to installed Claude Code plugins from the developer-kits marketplace. Use /check-updates command. | Maintenance |
/plugin marketplace add marketplace
/plugin install claude-md-sync@developer-kits
/plugin install claude-mem0@developer-kits
/plugin install gui-agent-dev@developer-kits
/plugin install plugin-updater@developer-kits
Install the plugin-updater and use the /check-updates command:
# Install the plugin
/plugin install plugin-updater@developer-kits
# Check for updates anytime
/check-updates
This will automatically:
# Clone or download the repository
git clone marketplace
cd developer-kits
# Run the update checker
bash scripts/check-updates.sh
The script will:
Check the versions.json file for the latest version numbers, or visit the Releases page.
# Update a specific plugin
/plugin install <plugin-name>@developer-kits
# This will fetch and install the latest version
To update a plugin to the latest version:
/plugin install <plugin-name>@developer-kits
Example:
/plugin install claude-mem0@developer-kits
Each plugin maintains its own changelog:
The versions.json file is automatically generated from each plugin's plugin.json file. You don't need to manually maintain it.
To regenerate versions.json locally:
bash scripts/generate-versions.sh
When you push changes to any plugins/*/.claude-plugin/plugin.json file, GitHub Actions will automatically:
versions.jsonYou can also manually trigger the workflow from the GitHub Actions tab.
Update the version in your plugin's .claude-plugin/plugin.json:
{
"name": "your-plugin",
"version": "1.1.0",
...
}
Update the plugin's CHANGELOG.md with the new version details
Commit and push:
git add plugins/your-plugin/.claude-plugin/plugin.json
git add plugins/your-plugin/CHANGELOG.md
git commit -m "chore: bump your-plugin to v1.1.0"
git push
GitHub Actions will automatically update versions.json
(Optional) Create a GitHub Release with tag your-plugin-v1.1.0
MIT