@r3b1s/pi-skill-creator

Pi-native skill creator extension and bundled skill workflow.

Packages

Package details

extensionskill

Install @r3b1s/pi-skill-creator from npm and Pi will load the resources declared by the package manifest.

$ pi install npm:@r3b1s/pi-skill-creator
Package
@r3b1s/pi-skill-creator
Version
0.2.1
Published
Jun 10, 2026
Downloads
not available
Author
r3b1s
License
Apache-2.0
Types
extension, skill
Size
132.1 KB
Dependencies
0 dependencies · 4 peers
Pi manifest JSON
{
  "extensions": [
    "./src/extension/index.ts"
  ],
  "skills": [
    "./skills"
  ]
}

Security note

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

README

Pi Skill Creator

Pi-native package for creating, improving, porting, evaluating, and reviewing Agent Skills.

Package resources

This package declares both resources in package.json:

  • extension: src/extension/index.ts
  • bundled skill: skills/skill-creator/SKILL.md

Install locally during development:

pi install -l .
# or try once
pi -e .

Usage

  • /sc starts or resumes the workflow.
  • sc_run manages durable run state.
  • sc_eval orchestrates eval planning/execution artifacts.
  • sc_review manages persisted review state and feedback.

Run artifacts are stored under .pi/skill-creator/runs/<run-id>/ by default and are ignored by git.

Confirmation boundaries

The extension may write run-directory artifacts. Ask before running noisy/expensive eval batches or applying edits to target skill files outside the run directory.

JSON mode fallback/probe

The primary eval path is the Pi TypeScript SDK. JSON mode is reserved for future compatibility probes or fallback diagnostics and should not be used as the normal /sc or sc_* workflow implementation.