BeClaude

gui-agent-dev

New
Community RegistryDevelopmentby James Tan

Development toolkit for GUI automation agents with /dev command (6-step workflow), 8 agents (5 domain + 3 workflow), and code review skill.

Community PluginView Source

Overview

A collection of plugins for Claude Code.

Available Plugins

PluginVersionDescriptionCategory
claude-md-sync1.0.0Automatically keeps CLAUDE.md synchronized with project state. Detects project type, analyzes current state, and proposes documentation updates.Productivity
claude-mem01.6.1Persistent memory for Claude Code using mem0 cloud API. Automatically captures and retrieves global user-level and project-level memories.Productivity
gui-agent-dev1.1.0Development toolkit for GUI automation agents with /dev command (6-step workflow), 8 agents (5 domain + 3 workflow), and code review skill.Development
plugin-updater1.0.0Check for updates to installed Claude Code plugins from the developer-kits marketplace. Use /check-updates command.Maintenance

Installation

1. Add this marketplace

code
/plugin marketplace add marketplace

2. Install a plugin

code
/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

Checking for Updates

Method 1: Using the plugin-updater plugin (Recommended)

Install the plugin-updater and use the /check-updates command:

bash
# Install the plugin
/plugin install plugin-updater@developer-kits

# Check for updates anytime
/check-updates

This will automatically:

  • Check all installed plugins against the latest versions
  • Display available updates with version numbers
  • Provide commands to update each plugin
  • Show changelog links for each update

Method 2: Using the update check script

bash
# Clone or download the repository
git clone marketplace
cd developer-kits

# Run the update checker
bash scripts/check-updates.sh

The script will:

  • Check all installed plugins against the latest versions
  • Display available updates with version numbers
  • Provide commands to update each plugin
  • Show changelog links for each update

Method 3: Manual check

Check the versions.json file for the latest version numbers, or visit the Releases page.

Method 4: Using Claude Code commands

bash
# Update a specific plugin
/plugin install <plugin-name>@developer-kits

# This will fetch and install the latest version

Updating Plugins

To update a plugin to the latest version:

bash
/plugin install <plugin-name>@developer-kits

Example:

bash
/plugin install claude-mem0@developer-kits

Version History

Each plugin maintains its own changelog:

For Plugin Developers

Automatic Version Management

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
bash scripts/generate-versions.sh

When you push changes to any plugins/*/.claude-plugin/plugin.json file, GitHub Actions will automatically:

  1. Run the generation script
  2. Update versions.json
  3. Commit and push the changes

You can also manually trigger the workflow from the GitHub Actions tab.

Publishing a New Version

  1. Update the version in your plugin's .claude-plugin/plugin.json:

``json { "name": "your-plugin", "version": "1.1.0", ... } ``

  1. Update the plugin's CHANGELOG.md with the new version details
  1. Commit and push:

``bash 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 ``

  1. GitHub Actions will automatically update versions.json
  1. (Optional) Create a GitHub Release with tag your-plugin-v1.1.0

License

MIT

Install & Usage

1
Create the skills directory
mkdir -p .claude/skills
2
Download the skill file
mkdir -p .claude/skills && curl -o .claude/skills/gui-agent-dev.md https://raw.githubusercontent.com/zlyv587/marketplace/main/SKILL.md
3
Invoke in Claude Code
/gui-agent-dev
View source on GitHub
code-reviewagent

Frequently Asked Questions

What is gui-agent-dev?

Development toolkit for GUI automation agents with /dev command (6-step workflow), 8 agents (5 domain + 3 workflow), and code review skill.

How to install gui-agent-dev?

To install gui-agent-dev, create the .claude/skills directory in your project, then run the curl command to download the skill file. Once installed, invoke it in Claude Code with /gui-agent-dev.

What is gui-agent-dev best for?

gui-agent-dev is a community categorized under Development. It is designed for: code-review, agent. Created by James Tan.