aimarketplace

Welcome

What this marketplace is, and what installing it gives your agent

ai is a UZE marketplace of self-contained plugins. Each one packages a slice of how I work (an engineering standard, git conventions, a toolkit for recording terminal UIs) as skills a coding agent discovers on its own.

Register it once, and every plugin in it becomes addressable as <name>@ai:

$ uze market add hiukky/ai

What you get

  • openspec

    2 skills

    Personal engineering standard: OpenSpec (proposal/specs/design/tasks) extended with optional ADRs for durable, hard-to-reverse decisions, plus LikeC4 for living architecture diagrams.

  • git

    2 skills

    Personal git workflow conventions: a Conventional Commits skill and a pull/merge request skill (gitflow branches, conventional titles).

  • tui

    1 skill

    Terminal UI media - starting with a record skill that generates a demo video from a spec: one file says what the video shows and how to rebuild the sandbox it was recorded in.

The one idea

A capability is a skill, and the skill says who may invoke it.

There is no commands/ directory here. A capability's canonical logic lives in one SKILL.md, and the same file's invoke: block declares its policy. UZE derives each vendor's surface from that: a slash command in Claude Code, a $name in another harness, plain auto-discovery where the harness has no explicit invocation at all.

invoke:MeansHere
absentmodel and user: discoverable by the agent, callable by namethe default; almost everything
model: false, user: truea deliberate action a person takes; the model never auto-triggers itopenspec:init
model: true, user: falsebackground-only, with no meaning as a typed commandunused today

That is the whole invocation model. Every skill and what triggers it is one table.

Skills here are written to fire proactively. git:commit commits when a unit of work is genuinely done, not only when you ask; openspec:adr records a decision when it clears the bar. That is the point of them being skills rather than commands. Read each one's triggers before installing it, and it will do less surprising things.

What UZE adds

This repository is a catalog. It does not install anything, watch anything, or run anything. UZE does all of that.

UZE owns a plugin's bytes in one store and delivers them to every coding agent on the machine through that agent's own native mechanism: a real plugin where one exists, a native capability where it doesn't, an adapter only as a last resort. Install git@ai once and the commit skill is there in Claude Code, Codex, OpenCode and Antigravity, with its invocation policy intact, not flattened into whatever the lowest common denominator is.

On this page