@arnavpadwal/pi-skills-onboarding

Onboarding skill for pi — analyzes a project and produces a comprehensive context document covering architecture, dependencies, code structure, configuration, and development workflow

Packages

Package details

skill

Install @arnavpadwal/pi-skills-onboarding from npm and Pi will load the resources declared by the package manifest.

$ pi install npm:@arnavpadwal/pi-skills-onboarding
Package
@arnavpadwal/pi-skills-onboarding
Version
1.0.0
Published
May 12, 2026
Downloads
not available
Author
arnavpadwal
License
MIT
Types
skill
Size
11.5 KB
Dependencies
0 dependencies · 0 peers
Pi manifest JSON
{
  "skills": [
    "./skills"
  ]
}

Security note

Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.

README

pi-skills-onboarding

Onboarding skill for pi — analyzes a project and produces a comprehensive context document.

Use this skill when starting work on a new project, joining an existing codebase, or needing a complete project overview.

Installation

pi install npm:@arnavpadwal/pi-skills-onboarding
# or from source:
pi install /path/to/pi-skills-onboarding

Or copy the skills/ directory to ~/.pi/agent/skills/onboarding/.

Usage

The skill is loaded automatically when pi detects your task matches project onboarding. You can also invoke it directly:

/skill:onboarding

The skill will analyze the project and produce a document covering:

  • Architecture & design
  • Dependencies & stack
  • Code structure
  • Configuration & environment
  • Development workflow

Contents

pi-skills-onboarding/
├── package.json       # Pi package manifest
├── README.md          # This file
└── skills/
    └── onboarding/
        └── SKILL.md   # The skill itself

Publishing

cd pi-skills-onboarding
npm publish --access public
# or push to GitHub:
pi install git:github.com/arnavpadwal/pi-skills-onboarding