Improve project-local pi config (#6309)

* feat(coding-agent): improve config resource overrides

* fix(coding-agent): simplify config resource overrides
This commit is contained in:
Armin Ronacher
2026-07-06 20:50:30 +02:00
committed by GitHub
parent 8c0ccd14b3
commit c8ada4e76e
9 changed files with 599 additions and 81 deletions
@@ -66,11 +66,13 @@ export type TransportSetting = Transport;
* Package source for npm/git packages.
* - String form: load all resources from the package
* - Object form: filter which resources to load
* - autoload=false: start empty and only apply explicit resource patterns
*/
export type PackageSource =
| string
| {
source: string;
autoload?: boolean;
extensions?: string[];
skills?: string[];
prompts?: string[];