@quandev104/pi-style 0.1.5 → 0.1.6
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 +6 -0
- package/README.md +2 -2
- package/dist/extensions/pi-style.js +240 -243
- package/dist/extensions/pi-style.js.map +1 -1
- package/extension-src/pi-style/domain/config-authorization.ts +6 -3
- package/extension-src/pi-style/pi/compatibility-coordinator.ts +16 -12
- package/extension-src/pi-style/pi/compatibility-probe.ts +296 -254
- package/extension-src/pi-style/pi/index.ts +3 -2
- package/package.json +9 -9
|
@@ -40,8 +40,9 @@ export function __setCompatibilityTestHooks(hooks: CompatibilityTestHooks): () =
|
|
|
40
40
|
|
|
41
41
|
/** Thin Pi adapter: register flags, commands, and forward lifecycle events. */
|
|
42
42
|
export default function piStyleExtension(pi: ExtensionAPI): void {
|
|
43
|
-
// The core/message/tool surfaces are default-on (
|
|
44
|
-
//
|
|
43
|
+
// The core/message/tool surfaces are default-on (identity-certified per surface by
|
|
44
|
+
// name/arity/source fingerprint, graceful native fallback for any surface whose
|
|
45
|
+
// runtime identity is not recorded, conflict-preserving). The OFF switch is the
|
|
45
46
|
// product gate `compatibility.allowCorePatches: false` (or `enabled: false`) in config.
|
|
46
47
|
for (const [name, description] of [
|
|
47
48
|
["pi-style-core-patches", "Enable pi-style message/tool core patches"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quandev104/pi-style",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "A native-layout, cohesive visual style package for Pi.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -42,18 +42,18 @@
|
|
|
42
42
|
"check": "npm run typecheck && npm run lint && npm run depcruise && npm run test && npm run build && npm run package:smoke"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@earendil-works/pi-agent-core": ">=0.83.0 <0.
|
|
46
|
-
"@earendil-works/pi-ai": ">=0.83.0 <0.
|
|
47
|
-
"@earendil-works/pi-coding-agent": ">=0.83.0 <0.
|
|
48
|
-
"@earendil-works/pi-tui": ">=0.83.0 <0.
|
|
45
|
+
"@earendil-works/pi-agent-core": ">=0.83.0 <0.85.0",
|
|
46
|
+
"@earendil-works/pi-ai": ">=0.83.0 <0.85.0",
|
|
47
|
+
"@earendil-works/pi-coding-agent": ">=0.83.0 <0.85.0",
|
|
48
|
+
"@earendil-works/pi-tui": ">=0.83.0 <0.85.0",
|
|
49
49
|
"typebox": ">=1.3.9 <2.0.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@biomejs/biome": "^2.5.0",
|
|
53
|
-
"@earendil-works/pi-agent-core": "^0.
|
|
54
|
-
"@earendil-works/pi-ai": "^0.
|
|
55
|
-
"@earendil-works/pi-coding-agent": "^0.
|
|
56
|
-
"@earendil-works/pi-tui": "^0.
|
|
53
|
+
"@earendil-works/pi-agent-core": "^0.84.0",
|
|
54
|
+
"@earendil-works/pi-ai": "^0.84.0",
|
|
55
|
+
"@earendil-works/pi-coding-agent": "^0.84.0",
|
|
56
|
+
"@earendil-works/pi-tui": "^0.84.0",
|
|
57
57
|
"@types/node": "^24.0.0",
|
|
58
58
|
"dependency-cruiser": "^17.4.3",
|
|
59
59
|
"git-cliff": "^2.13.1",
|