The author's personal extensions catalog for any MetaAgents-format runtime, published under the langsensei scope. Entries here are opt-in installs — they are not bundled with any runtime.
Designed for glyph (which pre-installs its own official first-party catalog from glyph/first-party), but the format is runtime-agnostic — any MetaAgents-compatible substrate can install from these origin URLs.
The catalog is intentionally flat — no domain subdirectories. The content spans textile (dyeing, finishing, compliance), finance (A-share research, fund holdings, sector scoring), lifestyle (wedding planning, hotel scouting, bazi, amap), gaming (Roco Kingdom), content (Xiaohongshu research, Tao Te Ching decks), dev-tools (go-dev, qq-email, sop), and methods (scientific-method, agency-role-reference).
agents/— Specialized agent personas (e.g.wedding-planner,a-share-analyst,dye-finish-advisor). Each agent ships anAGENTS.mdwith frontmatter and a markdown body.skills/— Reusable capabilities consumed by agents (e.g.xiaohongshu,amap,eastmoney-data). Each skill ships aSKILL.mdplus any scripts, templates, hooks, and reference material it needs.mcps/— Model Context Protocol server configs (<namespace>_<short>.json), each carrying a top-level_metablock with the FQN and origin URL.
Any MetaAgents-compatible runtime accepts a GitHub https://github.com/<owner>/<repo>/tree/<ref>/<path> URL as an install origin. To install an entry from this catalog:
| Type | Origin URL |
|---|---|
| Skill | https://github.com/LangSensei/agentic-catalog/tree/main/skills/<short-name> |
| Agent | https://github.com/LangSensei/agentic-catalog/tree/main/agents/<short-name> |
| MCP | https://github.com/LangSensei/agentic-catalog/tree/main/mcps/<filename>.json |
Examples (using glyph):
glyph catalog skill install --url https://github.com/LangSensei/agentic-catalog/tree/main/skills/xiaohongshu
glyph catalog agent install --url https://github.com/LangSensei/agentic-catalog/tree/main/agents/wedding-planner
glyph catalog mcp install --url https://github.com/LangSensei/agentic-catalog/tree/main/mcps/io.playwright_mcp.jsonThe runtime resolves the URL, fetches the entry (and its declared dependencies), and writes it into your local catalog. See the glyph README for full setup and CLI reference.
All entries in this catalog use scope: langsensei. The fully-qualified name (FQN) of an entry is langsensei/<short-name> for skills and agents, and <namespace>/<short> (per the MCP spec) for MCPs.
The frontmatter / JSON conventions used here are defined by the MetaAgents specification, with authoritative validators living in glyph's catalog package:
- Skills:
skill-frontmatter.ts,validate.ts - Agents:
agent-frontmatter.ts - MCPs:
mcp-format.ts - Origins:
origin.ts
See CONTRIBUTING.md for layout and frontmatter rules.