@mariozechner/pi-coding-agent 0.19.1 → 0.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -7
- package/README.md +8 -6
- package/dist/core/skills.d.ts.map +1 -1
- package/dist/core/skills.js +19 -36
- package/dist/core/skills.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +8 -0
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/docs/skills.md +7 -7
- package/package.json +4 -4
package/docs/skills.md
CHANGED
|
@@ -9,8 +9,8 @@ Skills are discovered from these locations (in order of priority, later wins on
|
|
|
9
9
|
1. `~/.codex/skills/**/SKILL.md` (Codex CLI user skills, recursive)
|
|
10
10
|
2. `~/.claude/skills/*/SKILL.md` (Claude Code user skills)
|
|
11
11
|
3. `<cwd>/.claude/skills/*/SKILL.md` (Claude Code project skills)
|
|
12
|
-
4. `~/.pi/agent/skills
|
|
13
|
-
5. `<cwd>/.pi/skills
|
|
12
|
+
4. `~/.pi/agent/skills/**/SKILL.md` (Pi user skills, recursive)
|
|
13
|
+
5. `<cwd>/.pi/skills/**/SKILL.md` (Pi project skills, recursive)
|
|
14
14
|
|
|
15
15
|
Skill names and descriptions are listed in the system prompt. When a task matches a skill's description, the agent uses the `read` tool to load it.
|
|
16
16
|
|
|
@@ -43,13 +43,13 @@ The parser only supports single-line `key: value` syntax. Multiline YAML blocks
|
|
|
43
43
|
|
|
44
44
|
### Variables
|
|
45
45
|
|
|
46
|
-
`{baseDir}`
|
|
46
|
+
Use `{baseDir}` as a placeholder for the skill's directory. The agent is told each skill's base directory and will substitute it when following the instructions.
|
|
47
47
|
|
|
48
|
-
### Subdirectories
|
|
48
|
+
### Subdirectories
|
|
49
49
|
|
|
50
|
-
Pi skills in subdirectories use colon-separated names:
|
|
51
|
-
- `~/.pi/agent/skills/db/migrate.md` → `db:migrate`
|
|
52
|
-
- `<cwd>/.pi/skills/aws/s3/upload.md` → `aws:s3:upload`
|
|
50
|
+
Pi and Codex skills in subdirectories use colon-separated names:
|
|
51
|
+
- `~/.pi/agent/skills/db/migrate/SKILL.md` → `db:migrate`
|
|
52
|
+
- `<cwd>/.pi/skills/aws/s3/upload/SKILL.md` → `aws:s3:upload`
|
|
53
53
|
|
|
54
54
|
## Claude Code Compatibility
|
|
55
55
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mariozechner/pi-coding-agent",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"piConfig": {
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"prepublishOnly": "npm run clean && npm run build"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@mariozechner/pi-agent-core": "^0.
|
|
43
|
-
"@mariozechner/pi-ai": "^0.
|
|
44
|
-
"@mariozechner/pi-tui": "^0.
|
|
42
|
+
"@mariozechner/pi-agent-core": "^0.20.0",
|
|
43
|
+
"@mariozechner/pi-ai": "^0.20.0",
|
|
44
|
+
"@mariozechner/pi-tui": "^0.20.0",
|
|
45
45
|
"chalk": "^5.5.0",
|
|
46
46
|
"diff": "^8.0.2",
|
|
47
47
|
"glob": "^11.0.3",
|