imweb-ai-toolkit
Korean | Japanese | Chinese
imweb-ai-toolkit installs the imweb CLI and connects it to supported AI coding tools. It provides the skill assets, surface metadata, examples, and bootstrap scripts needed to get started without requiring users to understand the release infrastructure behind the CLI.
flowchart LR
Toolkit["imweb-ai-toolkit"] --> CLI["imweb-cli"]
Toolkit --> Codex["Codex"]
Toolkit --> Claude["Claude"]
Toolkit --> Cursor["Cursor"]
Codex --> CLI
Claude --> CLI
Cursor --> CLI
What This Repo Contains
plugin.json, marketplace metadata, and surface metadata for Codex, Claude, Cursor, and MCP reference wiring.
bin/imweb-mcp.mjs, a local MCP bridge for Claude Desktop local MCP packages and Cowork package artifacts that installs/updates the host imweb CLI when the host exposes the MCP tools.
commands/imweb.md, the short /imweb slash-command entrypoint for Claude plugin surfaces.
skills/imweb/, the imweb skill bundle and its local docs.
install/, bootstrap and installer scripts for CLI, skill, and plugin setup.
docs/, public usage, integration, and support matrix documentation.
examples/, sample workflows and fixtures.
Install
- For Claude Code, run these two commands in a Claude Code chat:
/plugin marketplace add imwebme/imweb-ai-toolkit
/plugin install imweb-ai-toolkit@imweb-ai-toolkit
- For Codex, register the marketplace, then add
imweb-ai-toolkit from the Plugins UI:
codex plugin marketplace add imwebme/imweb-ai-toolkit --ref main
- For Claude Desktop Cowork, ask Claude in the Cowork task:
Install the imweb tool package:
npx -y github:imwebme/imweb-ai-toolkit --tool claude-cowork
Present imweb-ai-toolkit.plugin and imweb.skill so I can save them.
- For Claude Desktop chat local MCP, create the one-click MCPB bundle:
npx -y github:imwebme/imweb-ai-toolkit --tool claude-desktop
- For an AI coding agent installing Codex and Claude Code locally:
npx -y github:imwebme/imweb-ai-toolkit --tool both
After installation:
- The local plugin installer installs or updates the official
imweb CLI by default.
--tool claude-desktop creates imweb-ai-toolkit.mcpb, a Claude Desktop local MCP bundle. Open it with Claude Desktop and click Install; the bundled MCP bridge manages CLI install/update on first use.
--tool claude-cowork creates imweb-ai-toolkit.plugin and imweb.skill. Accept the presented plugin and skill cards, then start with a business prompt such as:
Use imweb tool to investigate suspicious recent orders.
Use imweb tool to get the top 5 products with the most visitors and review their detail pages as far as possible.
- Short names such as
imweb tool, imweb tools, or imweb toolkit should route to the same imweb entrypoint.
- Current Claude Desktop Cowork builds may reject slash-form text such as
/imweb before the task starts, even when the skill is enabled. If that happens, use a natural-language prompt instead.
- The plugin includes the
/imweb slash entrypoint for Claude plugin surfaces and a local imweb-cli MCP bridge for hosts that expose those tools.
- If Claude Desktop asks for imweb tool permission, click
Allow for this task.
- If the host CLI is not logged in, Claude can start the browser login flow for you. Finish the imweb login in the browser; Claude will re-check auth and continue the original request.
- If a requested metric is not available through the CLI, such as visitor/traffic-ranked products, Claude should say so and continue with supported read-only checks like product lists, product details, reviews, site info, or recent orders.
- The skill package keeps the same imweb instructions available as a custom Skill fallback.
Other Install Methods
If only the imweb CLI binary is missing:
npx -y github:imwebme/imweb-ai-toolkit --tool cli
If the target tool does not support plugins, install the standard Agent Skill directly:
npx skills add imwebme/imweb-ai-toolkit --skill imweb --copy -y --agent claude-code codex
For full installer flags, verification steps, and manual clone fallback, see docs/ai-agent-installation.md. Advanced local or pinned-version setup is documented in docs/skill-installation-and-usage.md.
Uninstall
To remove the local Codex and Claude Code setup:
npx -y github:imwebme/imweb-ai-toolkit --uninstall --tool both
To remove every local package artifact plus the installer-managed CLI:
npx -y github:imwebme/imweb-ai-toolkit --uninstall --tool all