mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 06:04:40 +00:00
docs(coding-agent): document glob pattern support in pi manifest
This commit is contained in:
parent
ed75a8320b
commit
23fd73e558
2 changed files with 13 additions and 1 deletions
|
|
@ -196,6 +196,18 @@ pi update # update all non-pinned packages
|
|||
}
|
||||
```
|
||||
|
||||
The pi manifest supports glob patterns and exclusions:
|
||||
|
||||
```json
|
||||
{
|
||||
"pi": {
|
||||
"extensions": ["./extensions", "!**/deprecated/*"],
|
||||
"skills": ["./skills", "./node_modules/other-pkg/skills", "!**/experimental/*"],
|
||||
"themes": ["./themes/*.json"]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
The `package.json` approach enables:
|
||||
- Multiple extensions from one package
|
||||
- Skills, prompts, and themes declared alongside extensions
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue