npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@apolosan/unified-process

v1.2.2

Published

Pi package that bundles the Object-Oriented Unified Process extension and skills for the pi coding agent.

Downloads

141

Readme

Unified Process pi Extension

Version: 1.2.2

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

Canonical public package layout

This repository is organized as a pi package for public distribution:

  • extensions/unified-process/ → pi extension entrypoint and source
  • skills/up-*/ → public skills shipped by the package
  • resources/ → dependency manifests and MCP template
  • scripts/ → 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.

Installation

Recommended npm package install:

pi install npm:@apolosan/unified-process

Alternative GitHub install:

pi install git:github.com/apolosan/unified_process_pi_extension

Package contents

Extension

Main 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).

Integration verification (v1.2.2): before declaring implementation or deploy ready, the agent receives a mandatory integration checklist. Run stack/API/smoke/Tier 1 e2e commands, then record evidence with up_record_integration_check. The tool writes structured JSONL records to docs/up/14-implementation/smoke.log and deploy readiness requires all four check types (stack_up, api_health, smoke, tier1_integrated_e2e) with exit_code: 0.

Registered tools:

  • up_save_artifact
  • up_load_artifact
  • up_update_state
  • up_list_artifacts
  • up_record_integration_check — record check type, command, exit code, and timestamp to smoke.log
  • up_require_paths — validate required integration paths (API, tests, matrix, operations, env template)

Skills

Included UP skills:

  • up-orchestrator
  • up-5w2h
  • up-vision
  • up-requirements
  • up-use-cases
  • up-sequence-diagrams
  • up-conceptual-model
  • up-contracts
  • up-tech-stack
  • up-tdd
  • up-design-patterns
  • up-object-design
  • up-interface-design
  • up-design-system
  • up-data-mapping
  • up-implementation
  • up-deploy
  • up-documentation

External dependencies referenced by the skills

The package itself is a pi package, but several skills explicitly rely on external MCP servers and CLIs.

MCP servers

Required/recommended MCPs referenced by the skills:

  • design-patterns
  • shadcn
  • radix-mcp-server
  • flyonui

Design Patterns MCP (concrete source + config)

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:setup

Recommended 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

Companion pi skills

Referenced support skills:

  • context7
  • brave-search
  • web-search
  • web-fetch

CLI/tooling

Core CLI/tooling referenced directly by the skills:

  • npm
  • npx
  • mmdc (@mermaid-js/mermaid-cli)
  • docker
  • docker-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.

Automated dependency procedure

This repository includes an explicit automation layer to check, bootstrap, and template the MCP/CLI dependencies mentioned by the skills.

Check dependency status

npm run deps:check

or, after global install:

up-deps check

Scan skill references against the dependency catalog

npm run deps:scan
npm run check   # dependency scan + extension syntax + unit tests
npm test        # extension unit tests only

Runtime guarantees

| Capability | The workflow requires | The extension verifies automatically | |------------|-----------------------|--------------------------------------| | Artifact I/O boundary | Artifacts stay under docs/up/ | Yes: save/load reject traversal, absolute paths, encoded traversal, and mixed separator escapes | | State updates | Only known UP state fields are persisted | Yes: malformed JSON, arrays/primitives, oversized payloads, and unknown fields are rejected | | Activity completion | Activities advance only from sufficient artifacts | Partially: recovered state uses explicit completion rules and minimum artifact size; semantic completeness remains a skill/reviewer responsibility | | Integration evidence | Stack/API/smoke/Tier 1 e2e evidence before deploy readiness | Partially: structured JSONL is parsed and all four check types are required, but commands are still executed outside the recording tool | | Typecheck | Static TypeScript validation | Not yet: typescript is not installed in this package, so npx tsc --noEmit is a dependency/setup task |

Install known auto-installable dependencies

npm run deps:install

This 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-conditional

Generate an MCP template

npm run deps:mcp-template

Notes on automation scope

Not 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.

Publishing notes

Recommended npm package name:

  • @apolosan/unified-process

Recommended GitHub repository:

  • apolosan/unified_process_pi_extension

License

MIT