Public registry of skill packs for StackMemory — versioned, distributable agent bundles.
# From this registry (namespace/pack-name)
stackmemory pack install coding/typescript-react
# From a local directory
stackmemory pack install ./my-pack
# From a GitHub URL
stackmemory pack install https://github.com/user/my-pack| Pack | Description |
|---|---|
coding/typescript-react |
TypeScript + React conventions, patterns, and guardrails |
coding/python-fastapi |
Python + FastAPI conventions, patterns, and guardrails |
ops/decision-recovery |
Decision tracking, context recovery, and session handoff |
# Initialize in current directory
stackmemory pack init my-namespace/my-pack
# Edit pack.yaml and instructions.md
# ...
# Validate
stackmemory pack publish --dry-run
# Install locally
stackmemory pack install .Each pack is a directory containing:
pack.yaml— manifest with name, version, runtime, MCP tools, examplesinstructions.md— instructions for the agent (referenced from pack.yaml)
name: namespace/pack-name
version: 1.0.0
description: One-line description
author: your-name
license: MIT
runtime:
type: local | e2b | cua | modal
ingestion:
sources: []
ontology:
entities: []
relations: []
mcp:
tools: []
examples:
- input: "..."
output: "..."
instructions: instructions.md- Fork this repo
- Add your pack under
namespace/pack-name/ - Include
pack.yamlandinstructions.md - Open a pull request — CI validates the manifest automatically
MIT