wise

Solid

wise copilot — natural-language entry point for the whole wise plugin. With no argument, prints the catalog of available `/wise-*` commands plus the reference skills; with free-text (e.g. `/wise open a PR`, `/wise draft a commit message`), classifies the request against the catalog and offers to run the matching command. Use when the user types `/wise` bare (for the help listing) or `/wise <free-form description>` (to find the right command).

AI & Automation 4 stars 0 forks Updated today MIT

Install

View on GitHub

Quality Score: 83/100

Stars 20%
23
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# /wise — wise copilot Before asking any user question, read and follow the [question lifecycle](../../references/workflow-host-control.md#keep-asynchronous-questions-open). Keep asynchronous prompts open until answered; this rule does not authorize questions in autonomous or otherwise prompt-free procedures. ## Why this skill exists The wise plugin ships 15+ slash commands plus reference skills that Claude auto-consults. No one remembers every name. `/wise` is the human-friendly entry point: - **Bare `/wise`** — print the catalog so the user can see everything the plugin adds to their Claude Code install. - **`/wise <free-form text>`** — "I want to X" style requests. Classify the intent against the catalog, propose the best-matching slash command, offer to run it on the user's behalf. Fall back to the help listing if nothing matches clearly. This is not a router — autocomplete already does that job, and every action skill is invokable directly (`/wise-workflow-run`, `/wise-pr-create`, `/wise-commit-message`, …). `/wise` exists for discovery and for users who prefer to describe what they want instead of remembering exact command names. ## Procedure ### 1. Load the catalog Run once per invocation: ```bash bash "${CLAUDE_PLUGIN_ROOT}/scripts/engine.sh" list-skills ``` On success, the script emits a JSON document with every skill in the plugin, bucketed by shape: ```json { "standalone": [ { "name": "wise-workflow-run", "plugin": "wise", ...

Details

Author
e1024kb
Repository
e1024kb/wise-claude
Created
3 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

wise-skills-create

Scaffold a new skill inside the wise plugin by delegating to Claude Code's skill-creator skill. The new skill lands in `plugins/wise/skills/<name>/`. The plugin hosts two skill shapes: standalone slash-command skills and reference/guidance skills. Any free-form tail the user types after the skill name is forwarded to skill-creator as additional intent. Only runnable from inside a checkout of the wise-claude marketplace repo. Invoked as `/wise-skills-create` (bare alias) or `/wise:wise-skills-create` (canonical). Use when the user says "create a skill", "scaffold a skill", "new skill", "add a skill", or types `/wise-skills-create`.

4 Updated today
e1024kb
AI & Automation Solid

wise-workflow-list

List every workflow available to the wise plugin — both the bundled defaults that ship with the plugin and the user-authored ones under the engine-selected user definition directory. Read-only. Invoked as `/wise-workflow-list` (bare alias) or `/wise:wise-workflow-list` (canonical). Use when the user says "list workflows", "show workflows", "which workflows are available", "what workflows can I run", or types `/wise-workflow-list`.

4 Updated today
e1024kb
AI & Automation Listed

wise-init

Set up wise's Python 3.11+ runtime and managed engine dependencies, check the engine, report provider and connector readiness, and cache the results. GitHub, provider logins, SSH, MCP connectors, and markitdown are optional until a selected action needs them. Preserve earlier skip decisions on repeat runs. Use when the user says "init wise", "set up wise", "install wise deps", "first-time setup", or types /wise-init.

4 Updated today
e1024kb