Agent Plugins Marketplace
All plugins

vise

v0.1.0a28

Phase-gated workflow enforcer, cross-project experience memory, and git snapshots for Claude Code

Claude Code23 Skills1 MCP serverstdio

0 GitHub starsUpdated 3 days ago

Directory evidence

Runtimes
Claude Code
Parsed components
24 skill or MCP entries
Source updated
Sep 20, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install vise for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install vise@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/Rixmerz/vise

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.

Plugin files

vise/
├── .claude-plugin/plugin.json
├── skills/agent-autoheal/SKILL.md
├── skills/architecture/SKILL.md
├── skills/bash-rules/SKILL.md
├── skills/codelayer/SKILL.md
├── skills/cpp-rules/SKILL.md
├── skills/csharp-rules/SKILL.md
├── skills/design-brief/SKILL.md
├── skills/engineering-baseline/SKILL.md
├── skills/go-rules/SKILL.md
├── skills/java-rules/SKILL.md
├── skills/kotlin-rules/SKILL.md
├── skills/lua-rules/SKILL.md
├── skills/orchestration/SKILL.md
├── skills/php-rules/SKILL.md
├── skills/ponytail/SKILL.md
├── skills/python-rules/SKILL.md
├── skills/ruby-rules/SKILL.md
├── skills/rust-rules/SKILL.md
├── skills/security-baseline/SKILL.md
├── skills/sql-rules/SKILL.md
├── skills/swift-rules/SKILL.md
├── skills/typescript-rules/SKILL.md
├── skills/web-ui-rules/SKILL.md
└── .mcp.json

Included Skills23

agent-autohealskills/agent-autoheal/SKILL.md

Two-path protocol for failing subagents. Hot path (during task) — re-brief the same agent with the quoted failure, record the incident under a shape slug in that agent's charter-keyed ledger, escalate after 2 misses; never edits agent files. Cold path (batched heal) — only when that ledger counts the SAME shape twice for one agent, classify root cause and apply ONE surgical fix. Use after a subagent fails review/validators, or when experience_query on an agent's charter path surfaces a repeat failure shape.

architectureskills/architecture/SKILL.md

Software architecture reasoning — non-functional requirements, design-pattern selection, and scenario-based tradeoff evaluation (ATAM/SAAM essence). Use when designing a system, choosing a pattern, evaluating an architecture, or writing a design doc. Biased toward the simplest structure that meets the requirements.

bash-rulesskills/bash-rules/SKILL.md

Shell scripting conventions — strict mode, quoting, safe expansion, no eval, portable exits. Use ONLY when the file under edit or review is a shell script (.sh/.bash/.zsh, or a file with a shell shebang), or when writing a non-trivial one-off shell pipeline; do NOT apply to any other language.

codelayerskills/codelayer/SKILL.md

Read and change code through the symbol layer instead of by file path — read_unit, find_symbol, search_similar, resolve_location. Load when working in a repo where VISE_CODELAYER is set, when a Read or Grep on source was denied, before writing a new helper, or when deciding whether a piece of code is worth decoupling. Covers when NOT to decouple, which is the part that keeps the layer from turning under-engineering into over-engineering.

cpp-rulesskills/cpp-rules/SKILL.md

C and C++ conventions — RAII, ownership, no raw new/delete, bounds and lifetime safety. Use ONLY when the file under edit or review is C/C++ (.c/.h/.cpp/.cc/.cxx/.hpp/.hxx/.C/.H); do NOT apply to any other language.

csharp-rulesskills/csharp-rules/SKILL.md

C# conventions — nullable reference types, async/await discipline, IDisposable, LINQ hygiene. Use ONLY when the file under edit or review is C# (.cs); do NOT apply to any other language.

design-briefskills/design-brief/SKILL.md

Decide what a UI should look like before any of it is built — a compact token system (palette, type scale, layout, one signature element) written down as an artifact the implementer follows. Use before writing or reshaping user-facing UI in any framework (.html/.css/.scss/.tsx/.jsx/.vue/.svelte/.astro), when a design looks templated or generic, or when a task says "make it look better" and nothing states what better means.

engineering-baselineskills/engineering-baseline/SKILL.md

The language-agnostic rules every vise agent carries, plus the precedence rule that settles conflicts between the project's own conventions, a `*-rules` skill, and `ponytail`. Use on every code-touching task, in any language — it is what the per-language rules skills sit on top of. Also use when two loaded instructions contradict each other and you need to know which one wins.

go-rulesskills/go-rules/SKILL.md

Go coding conventions — context discipline, error wrapping, goroutine safety, small interfaces. Use ONLY when the file under edit or review is Go (.go); do NOT apply to any other language.

java-rulesskills/java-rules/SKILL.md

Java coding conventions — immutability, Optional discipline, resource safety, modern language features. Use ONLY when the file under edit or review is Java (.java); do NOT apply to any other language.

kotlin-rulesskills/kotlin-rules/SKILL.md

Kotlin conventions — null safety, immutability, coroutines discipline, idiomatic scope functions. Use ONLY when the file under edit or review is Kotlin (.kt/.kts); do NOT apply to any other language.

lua-rulesskills/lua-rules/SKILL.md

Lua conventions — locals by default, explicit nil handling, 1-based indexing, careful metatables. Use ONLY when the file under edit or review is Lua (.lua); do NOT apply to any other language.

orchestrationskills/orchestration/SKILL.md

The single entry point for substantial work — picks and activates the matching phase workflow, then runs wave-based parallel delegation to subagents inside it. Use when a task spans multiple domains (backend + frontend + db), has independent streams that could run in parallel, or needs 3+ sequential phases of mechanical work. Also use proactively when about to grind through 5+ file edits yourself that a well-briefed subagent could execute.

php-rulesskills/php-rules/SKILL.md

PHP coding conventions — strict types, typed properties, PSR standards, safe SQL. Use ONLY when the file under edit or review is PHP (.php); do NOT apply to any other language.

ponytailskills/ponytail/SKILL.md

Lazy-senior-dev solution minimalism — the simplest, shortest thing that actually works. Use when implementing any feature or fix, to prevent over-engineering, unneeded dependencies, and speculative abstractions.

python-rulesskills/python-rules/SKILL.md

Python coding conventions — modern typing, async discipline, safe subprocess, tooling. Use ONLY when the file under edit or review is Python (.py/.pyi); do NOT apply to any other language.

ruby-rulesskills/ruby-rules/SKILL.md

Ruby coding conventions — idiomatic blocks, safe navigation, frozen strings, small methods. Use ONLY when the file under edit or review is Ruby (.rb/.rake/.gemspec); do NOT apply to any other language.

rust-rulesskills/rust-rules/SKILL.md

Rust coding conventions — error handling, ownership idioms, unsafe discipline, cargo tooling. Use ONLY when the file under edit or review is Rust (.rs); do NOT apply to any other language.

security-baselineskills/security-baseline/SKILL.md

How to name, rank, and triage a security finding — CWE as the vocabulary, an evidence-anchored severity ladder instead of an invented CVSS score, the reachability-first protocol for a dependency CVE, and supply-chain discipline. Use when auditing code, triaging scanner output (SAST/SCA/secrets), reviewing a security-sensitive diff, deciding how urgent a vulnerable dependency is, or writing up findings.

sql-rulesskills/sql-rules/SKILL.md

SQL and schema-migration conventions — parameterized queries, reversible DDL, safe index creation, expand/contract for destructive changes. Use ONLY when writing or reviewing SQL, DDL, or a database migration (.sql files, migration directories, ORM migration classes); do NOT apply to any other language.

swift-rulesskills/swift-rules/SKILL.md

Swift conventions — optionals discipline, value types, error handling, structured concurrency. Use ONLY when the file under edit or review is Swift (.swift); do NOT apply to any other language.

typescript-rulesskills/typescript-rules/SKILL.md

TypeScript coding conventions — strict types, discriminated unions, boundary validation. Use ONLY when the file under edit or review is TypeScript/JavaScript (.ts/.tsx/.js/.jsx); do NOT apply to any other language.

web-ui-rulesskills/web-ui-rules/SKILL.md

Framework-agnostic UI conventions — semantic HTML, accessibility, CSS layout and specificity, responsive and theme discipline. Use ONLY when the file under edit or review renders user interface — HTML, CSS/SCSS, or a component template (.html/.css/.scss/.jsx/.tsx/.vue/.svelte/.astro/.erb/.liquid); do NOT apply to non-UI code.

MCP servers1

visestdio
command
${CLAUDE_PLUGIN_ROOT}/bin/vise-run
args
-m vise
env.PYTHONPATH
${CLAUDE_PLUGIN_ROOT}/src

MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.

Plugin manifests1

.claude-plugin/plugin.json
{
  "name": "vise",
  "description": "Phase-gated workflow enforcer, cross-project experience memory, and git snapshots for Claude Code",
  "version": "0.1.0a28",
  "mcpServers": "./.mcp.json"
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[vise on Agent Plugins Marketplace](https://pluginsmp.com/plugins/vise)