Base Context can help you create resource packages. Ask it to bundle your extensions, skills, prompt templates, or themes.
Base Context packages bundle extensions, skills, prompt templates, and themes so you can share them through npm or git. For compatibility with the inherited extension ecosystem, a package declares resources in package.json under the pi key, or uses conventional directories.
Setup: Follow installation to install the CLI or build from source. Installing a third-party resource package is separate from installing Base Context. Review executable resources before loading them.
- Install and Manage
- Package Sources
- Creating a Base Context Package
- Package Structure
- Dependencies
- Package Filtering
- Enable and Disable Resources
- Scope and Deduplication
Security: Base Context packages run with full system access. Extensions execute arbitrary code, and skills can instruct the model to perform any action including running executables. Review source code before installing third-party packages.
base-context package install npm:@foo/bar@1.0.0
base-context package install git:github.com/user/repo@v1
base-context package install https://github.com/user/repo # raw URLs work too
base-context package install /absolute/path/to/package
base-context package install ./relative/path/to/package
base-context package remove npm:@foo/bar
base-context package list # show installed packages from settings
base-context package update # update all non-pinned packages
base-context package update npm:@foo/bar # update one package
base-context update # update Base Context
base-context update --force # reinstall Base Context even if currentSelf-update still requires an available compatible release. --force does not bypass an unavailable release lookup.
By default, package install and package remove write to global settings (~/.base-context/settings.json). BASE_CONTEXT_HOME overrides that global state directory. Use --local to write to project settings (.base-context/settings.json) instead. Project settings can be shared with your team, and Base Context installs any missing packages automatically on startup.
To try a package without installing it, use --extension or -e. This installs to a temporary directory for the current run only:
base-context -e npm:@foo/bar
base-context -e git:github.com/user/repoBase Context accepts three source types in settings and base-context package install.
npm:@scope/pkg@1.2.3
npm:pkg
- Versioned specs are pinned and skipped by
base-context package update. - Global installs use
npm install -g. - Project installs go under
.base-context/npm/. - Set
npmCommandinsettings.jsonto pin npm package lookup and install operations to a specific wrapper command such asmiseorasdf.
Example:
{
"npmCommand": ["mise", "exec", "node@22.12.0", "--", "npm"]
}git:github.com/user/repo@v1
git:git@github.com:user/repo@v1
https://github.com/user/repo@v1
ssh://git@github.com/user/repo@v1
- Without
git:prefix, only protocol URLs are accepted (https://,http://,ssh://,git://). - With
git:prefix, shorthand formats are accepted, includinggithub.com/user/repoandgit@github.com:user/repo. - HTTPS and SSH URLs are both supported.
- SSH URLs use your configured SSH keys automatically (respects
~/.ssh/config). - For non-interactive runs (for example CI), you can set
GIT_TERMINAL_PROMPT=0to disable credential prompts and setGIT_SSH_COMMAND(for examplessh -o BatchMode=yes -o ConnectTimeout=5) to fail fast. - Refs pin the package and skip
base-context package update. - Cloned to
~/.base-context/git/<host>/<path>(global) or.base-context/git/<host>/<path>(project). - Runs
npm install --omit=devafter clone or pull ifpackage.jsonexists. With an explicitnpmCommandwrapper, it uses plaininstall.
SSH examples:
# git@host:path shorthand (requires git: prefix)
base-context package install git:git@github.com:user/repo
# ssh:// protocol format
base-context package install ssh://git@github.com/user/repo
# With version ref
base-context package install git:git@github.com:user/repo@v1.0.0/absolute/path/to/package
./relative/path/to/package
Local paths point to files or directories on disk and are added to settings without copying. Relative paths are resolved against the settings file they appear in. If the path is a file, it loads as a single extension. If it is a directory, Base Context loads resources using package rules.
Add a pi manifest to package.json or use conventional directories. Include the pi-package keyword for discoverability.
{
"name": "my-package",
"keywords": ["pi-package"],
"pi": {
"extensions": ["./extensions"],
"skills": ["./skills"],
"prompts": ["./prompts"],
"themes": ["./themes"]
}
}Paths are relative to the package root. Arrays support glob patterns and !exclusions.
The inherited pi-package keyword and optional video or image fields remain available as package metadata:
{
"name": "my-package",
"keywords": ["pi-package"],
"pi": {
"extensions": ["./extensions"],
"video": "https://example.com/demo.mp4",
"image": "https://example.com/screenshot.png"
}
}- video: URL for an MP4 preview.
- image: URL for a PNG, JPEG, GIF, or WebP preview.
If both are set, video takes precedence.
If no pi manifest is present, Base Context auto-discovers resources from these directories:
extensions/loads.tsand.jsfilesskills/recursively findsSKILL.mdfolders and loads top-level.mdfiles as skillsprompts/loads.mdfilesthemes/loads.jsonfiles
Third party runtime dependencies belong in dependencies in package.json. Dependencies that do not register extensions, skills, prompt templates, or themes also belong in dependencies. When Base Context installs a package from npm or git, it runs npm install, so those dependencies are installed automatically.
Base Context supplies these host SDK packages: @ponythewhite/base-context-ai, @ponythewhite/base-context-agent, @ponythewhite/base-context, and @ponythewhite/base-context-tui. If you import them, list them in peerDependencies with a "*" range and do not bundle them. They are not currently published; use the built workspace packages from the source setup. The third-party typebox package should also remain a peer dependency when used.
Other resource packages must be bundled in your tarball. Add them to dependencies and bundledDependencies, then reference their resources through node_modules/ paths. Base Context loads packages with separate module roots, so separate installs do not collide or share modules.
Example:
{
"dependencies": {
"shitty-extensions": "^1.0.1"
},
"bundledDependencies": ["shitty-extensions"],
"pi": {
"extensions": ["extensions", "node_modules/shitty-extensions/extensions"],
"skills": ["skills", "node_modules/shitty-extensions/skills"]
}
}Filter what a package loads using the object form in settings:
{
"packages": [
"npm:simple-pkg",
{
"source": "npm:my-package",
"extensions": ["extensions/*.ts", "!extensions/legacy.ts"],
"skills": [],
"prompts": ["prompts/review.md"],
"themes": ["+themes/legacy.json"]
}
]
}+path and -path are exact paths relative to the package root.
- Omit a key to load all of that type.
- Use
[]to load none of that type. !patternexcludes matches.+pathforce-includes an exact path.-pathforce-excludes an exact path.- Filters layer on top of the manifest. They narrow down what is already allowed.
Use base-context config to enable or disable extensions, skills, prompt templates, and themes from installed packages and local directories. This works for both global (~/.base-context) and project (.base-context/) scopes.
Packages can appear in both global and project settings. If the same package appears in both, the project entry wins. Identity is determined by:
- npm: package name
- git: repository URL without ref
- local: resolved absolute path