pi-code 1.0.22 → 1.0.24
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/extensions/claude-rules.ts +40 -7
- package/extensions/commands.ts +5 -2
- package/extensions/internal/path-rules.ts +66 -20
- package/extensions/internal/project-root.ts +18 -0
- package/extensions/output-styles.ts +5 -2
- package/extensions/skills.ts +5 -2
- package/extensions/subagent/agents.ts +6 -3
- package/package.json +1 -1
|
@@ -21,8 +21,10 @@ import * as os from 'node:os'
|
|
|
21
21
|
import * as path from 'node:path'
|
|
22
22
|
import type { ExtensionAPI } from '@earendil-works/pi-coding-agent'
|
|
23
23
|
|
|
24
|
+
import { claudeMdExcludeFiles, isExcludedPath, readClaudeMdExcludes } from './context-imports.js'
|
|
24
25
|
import { claudeConfigDir } from './internal/config-dir.js'
|
|
25
26
|
import { publishInstructionLoad } from './internal/instruction-events.js'
|
|
27
|
+
import { readManagedSettings } from './internal/managed-settings.js'
|
|
26
28
|
import { type CompiledGlob, compileGlobs, matchesCompiledGlobs } from './internal/path-rules.js'
|
|
27
29
|
import { isProjectApproved } from './internal/project-approval.js'
|
|
28
30
|
import { findNearestDir } from './internal/project-root.js'
|
|
@@ -147,12 +149,36 @@ interface RuleSet {
|
|
|
147
149
|
|
|
148
150
|
const EMPTY_RULES: RuleSet = { inline: [], scoped: [] }
|
|
149
151
|
|
|
152
|
+
/** The canonical form of a path. A target that does not exist yet (a write
|
|
153
|
+
* creating a new file) canonicalises its nearest existing ancestor and keeps the
|
|
154
|
+
* remaining segments, so both sides of the attach match compare realpaths even
|
|
155
|
+
* for brand-new files in a symlinked checkout. */
|
|
156
|
+
function realpathOr(target: string): string {
|
|
157
|
+
try {
|
|
158
|
+
return fs.realpathSync(target)
|
|
159
|
+
} catch {
|
|
160
|
+
const dir = path.dirname(target)
|
|
161
|
+
if (dir === target) return target
|
|
162
|
+
return path.join(realpathOr(dir), path.basename(target))
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
150
166
|
/** Unscoped rules are inlined; path-scoped ones keep their scope as pointers,
|
|
151
|
-
* mirroring Claude Code, where scoped rules attach only to matching files.
|
|
152
|
-
|
|
167
|
+
* mirroring Claude Code, where scoped rules attach only to matching files. Files
|
|
168
|
+
* matching `claudeMdExcludes` are skipped entirely, as the docs' monorepo recipe
|
|
169
|
+
* (excluding another team's `.claude/rules/**`) relies on; the check runs on the
|
|
170
|
+
* realpath so a symlink cannot dodge an exclusion. */
|
|
171
|
+
function readRules(rulesDir: string, isExcluded?: (realPath: string) => boolean): RuleSet {
|
|
153
172
|
const inline: string[] = []
|
|
154
173
|
const scoped: ScopedRule[] = []
|
|
155
174
|
for (const file of findMarkdownFiles(rulesDir)) {
|
|
175
|
+
if (isExcluded) {
|
|
176
|
+
// Both spellings count: a glob written against the lexical path and one
|
|
177
|
+
// written against the resolved real path each exclude, which can only
|
|
178
|
+
// widen an exclusion, never dodge one.
|
|
179
|
+
const lexical = path.join(rulesDir, file)
|
|
180
|
+
if (isExcluded(lexical) || isExcluded(realpathOr(lexical))) continue
|
|
181
|
+
}
|
|
156
182
|
let parsed: Frontmatter
|
|
157
183
|
try {
|
|
158
184
|
parsed = parseFrontmatter(fs.readFileSync(path.join(rulesDir, file), 'utf-8'))
|
|
@@ -223,15 +249,20 @@ export default function claudeRulesExtension(pi: ExtensionAPI) {
|
|
|
223
249
|
let attachTargets: AttachTarget[] = []
|
|
224
250
|
|
|
225
251
|
pi.on('session_start', async (_event, ctx) => {
|
|
226
|
-
globalRules = readRules(globalRulesDir)
|
|
227
252
|
// Project rules are repository text landing in the system prompt, so they load
|
|
228
253
|
// only once the project is approved. isProjectTrusted alone is true for a repo
|
|
229
254
|
// pi never asked about; see project-approval.
|
|
230
255
|
const approved = await isProjectApproved(ctx)
|
|
256
|
+
// Claude's claudeMdExcludes covers rules files too (the docs' monorepo recipe
|
|
257
|
+
// excludes another team's .claude/rules/**), so the same merged glob list the
|
|
258
|
+
// context loader honors gates rule files here.
|
|
259
|
+
const excludeGlobs = readClaudeMdExcludes(claudeMdExcludeFiles(ctx.cwd, os.homedir(), approved), readManagedSettings())
|
|
260
|
+
const isExcluded = (realPath: string): boolean => isExcludedPath(realPath, excludeGlobs, os.homedir())
|
|
261
|
+
globalRules = readRules(globalRulesDir, isExcluded)
|
|
231
262
|
// Nearest at-or-above cwd, so a subdirectory session still reads the rules the
|
|
232
263
|
// approval walk gated on.
|
|
233
264
|
const projectRulesDir = approved ? findNearestDir(ctx.cwd, path.join('.claude', 'rules')) : null
|
|
234
|
-
projectRules = projectRulesDir ? readRules(projectRulesDir) : EMPTY_RULES
|
|
265
|
+
projectRules = projectRulesDir ? readRules(projectRulesDir, isExcluded) : EMPTY_RULES
|
|
235
266
|
|
|
236
267
|
// Global globs are relative to cwd; project globs to the project root (the dir
|
|
237
268
|
// holding .claude), so `db/**` in a repo rule matches repo-relative paths even
|
|
@@ -239,8 +270,8 @@ export default function claudeRulesExtension(pi: ExtensionAPI) {
|
|
|
239
270
|
// than on every tool result; rebuilt per session so a re-run re-attaches.
|
|
240
271
|
const projectRoot = projectRulesDir ? path.dirname(path.dirname(projectRulesDir)) : ctx.cwd
|
|
241
272
|
attachTargets = [
|
|
242
|
-
...globalRules.scoped.map((rule) => ({ globs: rule.paths, compiled: compileGlobs(rule.paths), body: rule.body, root: ctx.cwd, file: path.join(globalRulesDir, rule.rel), memoryType: 'User' as const })),
|
|
243
|
-
...projectRules.scoped.map((rule) => ({ globs: rule.paths, compiled: compileGlobs(rule.paths), body: rule.body, root: projectRoot, file: path.join(projectRulesDir ?? path.join(ctx.cwd, '.claude', 'rules'), rule.rel), memoryType: 'Project' as const })),
|
|
273
|
+
...globalRules.scoped.map((rule) => ({ globs: rule.paths, compiled: compileGlobs(rule.paths), body: rule.body, root: realpathOr(ctx.cwd), file: path.join(globalRulesDir, rule.rel), memoryType: 'User' as const })),
|
|
274
|
+
...projectRules.scoped.map((rule) => ({ globs: rule.paths, compiled: compileGlobs(rule.paths), body: rule.body, root: realpathOr(projectRoot), file: path.join(projectRulesDir ?? path.join(ctx.cwd, '.claude', 'rules'), rule.rel), memoryType: 'Project' as const })),
|
|
244
275
|
]
|
|
245
276
|
pendingScopedRules = attachTargets.length
|
|
246
277
|
// Relative to cwd, which the read tool resolves: an ancestor dir yields a
|
|
@@ -274,7 +305,9 @@ export default function claudeRulesExtension(pi: ExtensionAPI) {
|
|
|
274
305
|
if (event.toolName !== 'read' && event.toolName !== 'edit' && event.toolName !== 'write') return
|
|
275
306
|
const rel = (event.input as { path?: unknown } | undefined)?.path
|
|
276
307
|
if (typeof rel !== 'string' || rel.length === 0) return
|
|
277
|
-
|
|
308
|
+
// Realpath both sides (roots canonicalise at session_start): a tool reporting
|
|
309
|
+
// the resolved real path in a symlinked checkout must still match.
|
|
310
|
+
const abs = realpathOr(path.resolve(ctx.cwd, rel))
|
|
278
311
|
|
|
279
312
|
const bodies: string[] = []
|
|
280
313
|
const remaining: AttachTarget[] = []
|
package/extensions/commands.ts
CHANGED
|
@@ -52,7 +52,7 @@ import { capForContext } from './internal/output-guard.js'
|
|
|
52
52
|
import { matchesPathRules } from './internal/path-rules.js'
|
|
53
53
|
import { type InstalledPlugin, installedPlugins } from './internal/plugins.js'
|
|
54
54
|
import { isProjectApproved } from './internal/project-approval.js'
|
|
55
|
-
import {
|
|
55
|
+
import { ancestorDirs, repoRoot } from './internal/project-root.js'
|
|
56
56
|
import { claudeSettingsChain } from './internal/settings-chain.js'
|
|
57
57
|
import { createTurnOverride } from './internal/turn-override.js'
|
|
58
58
|
|
|
@@ -120,7 +120,10 @@ function isDirectory(target: string): boolean {
|
|
|
120
120
|
* the approval walk) and is included only for approved projects. */
|
|
121
121
|
export function commandDirs(cwd: string, home: string, trusted: boolean): string[] {
|
|
122
122
|
const candidates = [path.join(claudeConfigDir(home), 'commands')]
|
|
123
|
-
|
|
123
|
+
// Claude scans every .claude/commands between cwd and the repository root, the
|
|
124
|
+
// nearest winning a name clash: collectCommands lets later directories win, so
|
|
125
|
+
// the project list goes root-first with the nearest last.
|
|
126
|
+
if (trusted) candidates.push(...ancestorDirs(cwd, path.join('.claude', 'commands')).reverse())
|
|
124
127
|
const dirs: string[] = []
|
|
125
128
|
for (const dir of candidates) {
|
|
126
129
|
if (!dirs.includes(dir) && isDirectory(dir)) dirs.push(dir)
|
|
@@ -7,8 +7,10 @@
|
|
|
7
7
|
* root (the settings source), and bare or `./` from the current directory. As
|
|
8
8
|
* allow rules, a single-segment directory pattern anchors at cwd; a bare
|
|
9
9
|
* filename matches at any depth. `*` stays within one segment, `**` crosses
|
|
10
|
-
* directories. Matching is lexical, on resolved paths
|
|
11
|
-
*
|
|
10
|
+
* directories. Matching is lexical, on resolved paths. Bracket expressions parse
|
|
11
|
+
* per Claude's documented glob contract: `[abc]` classes with ranges and `!`
|
|
12
|
+
* negation, an unreadable `[` making the pattern match nothing, and `\[` for a
|
|
13
|
+
* literal bracket.
|
|
12
14
|
*/
|
|
13
15
|
|
|
14
16
|
import * as path from 'node:path'
|
|
@@ -79,26 +81,63 @@ function expandBraces(pattern: string): string[] | null {
|
|
|
79
81
|
return expanded
|
|
80
82
|
}
|
|
81
83
|
|
|
82
|
-
/**
|
|
83
|
-
|
|
84
|
+
/** The end index of a bracket expression starting at `start` (`[`), or -1 when it
|
|
85
|
+
* cannot be read as one, which per Claude makes the whole pattern invalid. A `]`
|
|
86
|
+
* directly after the opening (or after a leading negation) is a literal member. */
|
|
87
|
+
function bracketEnd(pattern: string, start: number): number {
|
|
88
|
+
let i = start + 1
|
|
89
|
+
if (pattern[i] === '!' || pattern[i] === '^') i += 1
|
|
90
|
+
if (pattern[i] === ']') i += 1
|
|
91
|
+
for (; i < pattern.length; i += 1) {
|
|
92
|
+
if (pattern[i] === ']') return i
|
|
93
|
+
}
|
|
94
|
+
return -1
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/** A bracket expression body as a regex character class, escaping regex-relevant
|
|
98
|
+
* characters while keeping `-` ranges; a leading `!` (or `^`) negates. */
|
|
99
|
+
function bracketClass(body: string): string {
|
|
100
|
+
const negated = body.startsWith('!') || body.startsWith('^')
|
|
101
|
+
const members = (negated ? body.slice(1) : body).replace(/[\\\]^]/g, (ch) => `\\${ch}`)
|
|
102
|
+
return `[${negated ? '^' : ''}${members}]`
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/** A `*` run starting at `i`: a double star followed by a slash spans whole
|
|
106
|
+
* directories, a bare double star crosses segments, and a single `*` stays within
|
|
107
|
+
* one. Returns the regex source and the index after the run. */
|
|
108
|
+
function translateStar(pattern: string, i: number): { source: string; next: number } {
|
|
109
|
+
if (pattern[i + 1] === '*') {
|
|
110
|
+
const prevSlash = i === 0 || pattern[i - 1] === '/'
|
|
111
|
+
if (prevSlash && pattern[i + 2] === '/') return { source: '(?:[^/]+/)*', next: i + 3 }
|
|
112
|
+
return { source: '.*', next: i + 2 }
|
|
113
|
+
}
|
|
114
|
+
return { source: '[^/]*', next: i + 1 }
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
function translateGlob(pattern: string): string | null {
|
|
84
118
|
let out = ''
|
|
85
119
|
let i = 0
|
|
86
120
|
while (i < pattern.length) {
|
|
87
121
|
const ch = pattern[i]
|
|
122
|
+
// Claude: to match a literal bracket, escape it; the escape consumes both chars.
|
|
123
|
+
if (ch === '\\' && (pattern[i + 1] === '[' || pattern[i + 1] === ']')) {
|
|
124
|
+
out += escapeRegExp(pattern[i + 1])
|
|
125
|
+
i += 2
|
|
126
|
+
continue
|
|
127
|
+
}
|
|
128
|
+
// Claude: `[` starts a bracket expression such as `[abc]`; a `[` that cannot be
|
|
129
|
+
// read as one makes the pattern invalid, matching nothing.
|
|
130
|
+
if (ch === '[') {
|
|
131
|
+
const end = bracketEnd(pattern, i)
|
|
132
|
+
if (end === -1) return null
|
|
133
|
+
out += bracketClass(pattern.slice(i + 1, end))
|
|
134
|
+
i = end + 1
|
|
135
|
+
continue
|
|
136
|
+
}
|
|
88
137
|
if (ch === '*') {
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
out += '(?:[^/]+/)*' // `**/` spans zero or more whole directories
|
|
93
|
-
i += 3
|
|
94
|
-
continue
|
|
95
|
-
}
|
|
96
|
-
out += '.*'
|
|
97
|
-
i += 2
|
|
98
|
-
continue
|
|
99
|
-
}
|
|
100
|
-
out += '[^/]*'
|
|
101
|
-
i += 1
|
|
138
|
+
const star = translateStar(pattern, i)
|
|
139
|
+
out += star.source
|
|
140
|
+
i = star.next
|
|
102
141
|
continue
|
|
103
142
|
}
|
|
104
143
|
if (ch === '?') {
|
|
@@ -112,13 +151,20 @@ function translateGlob(pattern: string): string {
|
|
|
112
151
|
return out
|
|
113
152
|
}
|
|
114
153
|
|
|
154
|
+
/** A regex source that matches nothing: the compiled form of an invalid pattern. */
|
|
155
|
+
const NEVER_MATCH = '(?!)'
|
|
156
|
+
|
|
115
157
|
/** One gitignore-style pattern as an anchored regular expression source. Brace
|
|
116
158
|
* groups (`{ts,tsx}`, nested, Cartesian across groups) expand into ORed
|
|
117
|
-
* alternatives; an over-budget expansion falls back to the literal pattern.
|
|
159
|
+
* alternatives; an over-budget expansion falls back to the literal pattern. An
|
|
160
|
+
* invalid pattern (an unreadable bracket expression) matches nothing, as Claude
|
|
161
|
+
* documents, rather than matching its literal spelling. */
|
|
118
162
|
export function globToRegExpSource(pattern: string): string {
|
|
119
163
|
const alternatives = expandBraces(pattern) ?? [pattern]
|
|
120
|
-
|
|
121
|
-
|
|
164
|
+
const sources = alternatives.map(translateGlob)
|
|
165
|
+
if (sources.includes(null)) return NEVER_MATCH
|
|
166
|
+
if (sources.length === 1) return sources[0] as string
|
|
167
|
+
return `(?:${sources.join('|')})`
|
|
122
168
|
}
|
|
123
169
|
|
|
124
170
|
/** A rule resolved to an absolute glob per its anchor form. */
|
|
@@ -60,6 +60,24 @@ export function findNearestFile(cwd: string, relative: string): string | null {
|
|
|
60
60
|
return findNearest(cwd, relative, false)
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
+
/** Every `relative` directory between cwd and the repository root, nearest first,
|
|
64
|
+
* matching Claude's "every .claude/<kind> between the working directory and the
|
|
65
|
+
* repository root" discovery where the entry closest to cwd wins a name clash. */
|
|
66
|
+
export function ancestorDirs(cwd: string, relative: string): string[] {
|
|
67
|
+
const boundary = repoRoot(cwd) ?? cwd
|
|
68
|
+
const found: string[] = []
|
|
69
|
+
let currentDir = cwd
|
|
70
|
+
while (true) {
|
|
71
|
+
const candidate = path.join(currentDir, relative)
|
|
72
|
+
if (statOf(candidate)?.isDirectory()) found.push(candidate)
|
|
73
|
+
if (currentDir === boundary) break
|
|
74
|
+
const parentDir = path.dirname(currentDir)
|
|
75
|
+
if (parentDir === currentDir) break
|
|
76
|
+
currentDir = parentDir
|
|
77
|
+
}
|
|
78
|
+
return found
|
|
79
|
+
}
|
|
80
|
+
|
|
63
81
|
/** Every `relative` file between the repository root and cwd, ordered root first,
|
|
64
82
|
* matching Claude's root-down ordering for hierarchy-loaded context. */
|
|
65
83
|
export function ancestorFiles(cwd: string, relative: string): string[] {
|
|
@@ -27,7 +27,7 @@ import type { ExtensionAPI } from '@earendil-works/pi-coding-agent'
|
|
|
27
27
|
import { claudeConfigDir } from './internal/config-dir.js'
|
|
28
28
|
import { installedPlugins } from './internal/plugins.js'
|
|
29
29
|
import { isProjectApproved } from './internal/project-approval.js'
|
|
30
|
-
import { findNearestDir, findNearestFile } from './internal/project-root.js'
|
|
30
|
+
import { ancestorDirs, findNearestDir, findNearestFile } from './internal/project-root.js'
|
|
31
31
|
import { claudeSettingsChain } from './internal/settings-chain.js'
|
|
32
32
|
|
|
33
33
|
export interface OutputStyle {
|
|
@@ -85,7 +85,10 @@ function isDirectory(target: string): boolean {
|
|
|
85
85
|
*/
|
|
86
86
|
export function styleDirs(cwd: string, home: string, trusted: boolean): string[] {
|
|
87
87
|
const dirs = [path.join(claudeConfigDir(home), 'output-styles')]
|
|
88
|
-
|
|
88
|
+
// Claude loads every .claude/output-styles between cwd and the repository root,
|
|
89
|
+
// using the one closest to cwd for a name clash: styleForName is first-match,
|
|
90
|
+
// so the nearest directory goes first.
|
|
91
|
+
if (trusted) dirs.push(...ancestorDirs(cwd, path.join('.claude', 'output-styles')))
|
|
89
92
|
return dirs.filter((dir) => isDirectory(dir))
|
|
90
93
|
}
|
|
91
94
|
|
package/extensions/skills.ts
CHANGED
|
@@ -29,7 +29,7 @@ import { parseCommandFile } from './internal/command-file.js'
|
|
|
29
29
|
import { claudeConfigDir } from './internal/config-dir.js'
|
|
30
30
|
import { installedPlugins } from './internal/plugins.js'
|
|
31
31
|
import { isProjectApprovedSilently } from './internal/project-approval.js'
|
|
32
|
-
import {
|
|
32
|
+
import { ancestorDirs } from './internal/project-root.js'
|
|
33
33
|
|
|
34
34
|
function isDirectory(target: string): boolean {
|
|
35
35
|
try {
|
|
@@ -53,7 +53,10 @@ export function skillDirs(cwd: string, home: string, trusted: boolean): string[]
|
|
|
53
53
|
const dirs = Array.isArray(declared) ? declared : [typeof declared === 'string' ? declared : 'skills']
|
|
54
54
|
candidates.push(...dirs.map((dir) => path.resolve(plugin.root, String(dir))))
|
|
55
55
|
}
|
|
56
|
-
|
|
56
|
+
// Claude loads skills from every .claude/skills between cwd and the repository
|
|
57
|
+
// root; the list goes nearest-first so findClaudeSkill's first match is the
|
|
58
|
+
// closest definition (pi's loader receives the same order).
|
|
59
|
+
if (trusted) candidates.push(...ancestorDirs(cwd, path.join('.claude', 'skills')))
|
|
57
60
|
const dirs: string[] = []
|
|
58
61
|
for (const dir of candidates) {
|
|
59
62
|
if (!dirs.includes(dir) && isDirectory(dir)) dirs.push(dir)
|
|
@@ -13,7 +13,7 @@ import { getAgentDir, parseFrontmatter, stripFrontmatter } from '@earendil-works
|
|
|
13
13
|
import { parseToolGrants } from '../internal/command-file.js'
|
|
14
14
|
import { claudeConfigDir } from '../internal/config-dir.js'
|
|
15
15
|
import { installedPlugins } from '../internal/plugins.js'
|
|
16
|
-
import { findNearestDir } from '../internal/project-root.js'
|
|
16
|
+
import { ancestorDirs, findNearestDir } from '../internal/project-root.js'
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
* `tools:` may be a comma-separated string (the Claude Code format) or a YAML block
|
|
@@ -337,13 +337,16 @@ export function discoverAgents(cwd: string, scope: AgentScope): AgentDiscoveryRe
|
|
|
337
337
|
const userDir = path.join(getAgentDir(), 'agents')
|
|
338
338
|
const claudeUserDir = path.join(claudeConfigDir(os.homedir()), 'agents')
|
|
339
339
|
const projectPiDir = findNearestDir(cwd, path.join('.pi', 'agents'))
|
|
340
|
-
|
|
340
|
+
// Claude scans every .claude/agents between cwd and the repository root, the
|
|
341
|
+
// definition closest to cwd winning a name clash; root-first load order makes
|
|
342
|
+
// the nearer directory's entry overwrite in the map below.
|
|
343
|
+
const projectClaudeDirs = ancestorDirs(cwd, path.join('.claude', 'agents')).reverse()
|
|
341
344
|
|
|
342
345
|
// Plugins load after builtins and before the user's own dirs, so a user agent
|
|
343
346
|
// wins a name clash with a plugin's, and ~/.pi/agent/agents wins over ~/.claude.
|
|
344
347
|
const userAgents = scope === 'project' ? [] : [...loadAgentsFromDir(BUILTIN_AGENTS_DIR, 'builtin'), ...pluginAgentDirs(os.homedir()).flatMap((dir) => loadAgentsFromDir(dir, 'plugin')), ...loadAgentsFromDir(claudeUserDir, 'user'), ...loadAgentsFromDir(userDir, 'user')]
|
|
345
348
|
// project .claude/agents loads first so project .pi/agents wins on name conflicts
|
|
346
|
-
const projectAgents = scope === 'user' ? [] : [...(
|
|
349
|
+
const projectAgents = scope === 'user' ? [] : [...projectClaudeDirs.flatMap((dir) => loadAgentsFromDir(dir, 'project')), ...(projectPiDir ? loadAgentsFromDir(projectPiDir, 'project') : [])]
|
|
347
350
|
|
|
348
351
|
const agentMap = buildAgentMap(userAgents, projectAgents, scope)
|
|
349
352
|
return { agents: Array.from(agentMap.values()), projectAgentsDir: projectPiDir }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-code",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.24",
|
|
4
4
|
"description": "Claude Code experience for the pi coding agent: reads your .claude config (rules, commands, skills, hooks, output styles, MCP servers, agents) and adds todo, checkpoints, memory, web, and subagents",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi",
|