Pi package that bundles an Object-Oriented Unified Process workflow for the pi coding agent.
It ships:
- a custom extension with UP state, commands, and tools
- the full
up-*skill chain - dependency manifests and bootstrap scripts for the MCP/CLI ecosystem referenced by the skills
This repository is organized as a pi package for public distribution:
extensions/unified-process/→ pi extension entrypoint and sourceskills/up-*/→ public skills shipped by the packageresources/→ dependency manifests and MCP templatescripts/→ dependency scanning/bootstrap helpers
This is the recommended layout for public sharing. The old project-local .pi/extensions/... layout is fine for local development, but not ideal as the canonical public/package structure.
Recommended npm package install:
pi install npm:@apolosan/unified-processAlternative GitHub install:
pi install git:github.com/apolosan/unified_process_pi_extensionMain extension entrypoint:
extensions/unified-process/index.ts
Registered commands:
/up/up-status/up-next/up-auto/up-artifacts
The extension footer/status now also shows the effective next UP command in real time (up:next). When the orchestrator persists an explicit recommendation, the extension also renders a compact widget above the editor with the recommended command and rationale, varying the label by recommendation type (forward progression, refinement, jump, coordination, risk-aware).
Registered tools:
up_save_artifactup_load_artifactup_update_stateup_list_artifacts
Included UP skills:
up-orchestratorup-5w2hup-visionup-requirementsup-use-casesup-sequence-diagramsup-conceptual-modelup-contractsup-tech-stackup-tddup-design-patternsup-object-designup-interface-designup-design-systemup-data-mappingup-implementationup-deployup-documentation
The package itself is a pi package, but several skills explicitly rely on external MCP servers and CLIs.
Required/recommended MCPs referenced by the skills:
design-patternsshadcnradix-mcp-serverflyonui
The design-patterns MCP expected by up-design-patterns is the public repository:
https://github.com/apolosan/design_patterns_mcp
Manual install:
git clone https://github.com/apolosan/design_patterns_mcp.git .up-tools/design_patterns_mcp
cd .up-tools/design_patterns_mcp
bun install
bun run db:setupRecommended MCP config:
{
"mcpServers": {
"design-patterns": {
"command": "node",
"args": ["dist/src/mcp-server.js"],
"cwd": "<INSTALL_PREFIX>/design_patterns_mcp",
"directTools": true,
"env": {
"LOG_LEVEL": "info",
"DATABASE_PATH": "./data/design-patterns.db",
"ENABLE_HYBRID_SEARCH": "true",
"ENABLE_GRAPH_AUGMENTATION": "true",
"EMBEDDING_COMPRESSION": "true",
"ENABLE_FUZZY_LOGIC": "true",
"ENABLE_TELEMETRY": "true",
"ENABLE_MULTI_LEVEL_CACHE": "true"
}
}
}
}Example MCP configuration template:
resources/unified-process.mcp.example.json
Referenced support skills:
context7brave-searchweb-searchweb-fetch
Core CLI/tooling referenced directly by the skills:
npmnpxmmdc(@mermaid-js/mermaid-cli)dockerdocker-compose
Conditional toolchain candidates also referenced by the skills are listed in:
resources/unified-process-dependencies.json
That file includes the broader optional ecosystem mentioned in up-tech-stack, such as jest, pytest, playwright, cypress, k6, locust, semgrep, snyk, trivy, lighthouse, pa11y, stryker, mutmut, and others.
This repository includes an explicit automation layer to check, bootstrap, and template the MCP/CLI dependencies mentioned by the skills.
npm run deps:checkor, after global install:
up-deps checknpm run deps:scan
npm run checknpm run deps:installThis now also bootstraps the public design_patterns_mcp server automatically when git and bun are available, then regenerates the MCP template.
To also include supported conditional npm/pip-based tools:
node ./scripts/setup-dependencies.mjs install-known --include-conditionalnpm run deps:mcp-templateNot every dependency can be installed safely or universally in a single cross-platform script.
Because of that, the automation is intentionally split into:
- auto-installable dependencies: portable npm/pip packages plus the git+bun bootstrap for
design_patterns_mcp - system/manual dependencies: tools such as Docker or OS-level/security-sensitive tooling that depend on platform, credentials, or private infrastructure
This keeps the public package safe, reproducible, and aligned with pi package best practices.
Recommended npm package name:
@apolosan/unified-process
Recommended GitHub repository:
apolosan/unified_process_pi_extension
MIT