Lizo's Skills Marketplace

A skills marketplace authored and maintained by Liz Osborn (Lizo-RoadTown).
The skills follow the open Agent Skills standard
(originally from Anthropic), which means they work across any compatible
agent — Claude Code, Cursor, Gemini CLI, OpenCode, Junie, Goose, Amp, and
others. This repo also ships the Claude Code
plugin marketplace
manifest so the skills install with one command in Claude Code.
Both skills are referenced by project-starter's variant templates. Until now, they had no public install path — this repo fixes that.
Skills in this marketplace
onboarding-psychologist
A behavioral-research framework for designing first-time-user experiences using the IDENTITY-TO-HABIT arc:
- Define the first win
- Remove unnecessary setup
- Create ownership through action
- Attach a stable cue
- Reinforce identity
Grounded in BJ Fogg's Tiny Habits and James Clear's identity-based habits. Activates on signup flows, empty states, welcome screens, and reactivation work. Refuses to produce feature tours, "12 things to know" walls, and CRUD-form empty states.
ai-agents-architect
A decision framework for autonomous-agent architecture:
- Where on the autonomy spectrum does this agent sit?
- Which loop pattern — ReAct, Plan-and-Execute, or Tree-of-Thoughts?
- Single agent or multiple? (Most common mistake: splitting agents without a real reason.)
- When to introduce an orchestrator?
Activates on agent-design and orchestration questions. Refuses tool overload, infinite tool loops without a cap, and unverified multi-agent splits.
Install
Claude Code
In an active Claude Code session, run:
/plugin marketplace add Lizo-RoadTown/claude-skills-marketplace
/plugin install onboarding-psychologist@lizo-skills
/plugin install ai-agents-architect@lizo-skills
Verify with /plugin list.
Other Agent Skills clients (Cursor, Gemini CLI, OpenCode, etc.)
Each client has its own way of registering skills; the
Agent Skills client showcase links to each
one's docs. The skills themselves are at:
plugins/onboarding-psychologist/skills/onboarding-psychologist/
plugins/ai-agents-architect/skills/ai-agents-architect/
You can clone this repo and point your client at those directories, or copy
the individual skill folders into your client's skills directory (usually
something like ~/.<client>/skills/).
Validation
Validate the skill format with the official reference tool from agentskills.io:
npx skills-ref validate ./plugins/onboarding-psychologist/skills/onboarding-psychologist
npx skills-ref validate ./plugins/ai-agents-architect/skills/ai-agents-architect
Repo layout
claude-skills-marketplace/
├── .claude-plugin/
│ └── marketplace.json # the catalog
├── plugins/
│ ├── onboarding-psychologist/
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json # plugin manifest
│ │ └── skills/
│ │ └── onboarding-psychologist/
│ │ └── SKILL.md # the skill itself
│ └── ai-agents-architect/
│ ├── .claude-plugin/
│ │ └── plugin.json
│ └── skills/
│ └── ai-agents-architect/
│ └── SKILL.md
├── README.md
└── LICENSE
Follows the standard Claude Code marketplace structure documented at https://docs.claude.com/en/docs/claude-code/plugin-marketplaces.
Updating
Bump the version field in plugins/<name>/.claude-plugin/plugin.json and the matching entry in .claude-plugin/marketplace.json when releasing a new version. Push to main. Users get updates when they run /plugin marketplace update followed by /plugin update.
Contributing
Contributions welcome — bug reports, content improvements, new skill proposals. See CONTRIBUTING.md for conventions and the PR flow.
By contributing you agree your contribution is licensed Apache 2.0. Please follow the Code of Conduct.
Security
Report vulnerabilities privately — see SECURITY.md. Don't open public issues for security problems.