@markusylisiurunen/tau 0.2.0-alpha.2 → 0.2.0-alpha.3

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.
@@ -1,2 +1,2 @@
1
- export const APP_VERSION = "0.2.0-alpha.2";
1
+ export const APP_VERSION = "0.2.0-alpha.3";
2
2
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@markusylisiurunen/tau",
3
- "version": "0.2.0-alpha.2",
3
+ "version": "0.2.0-alpha.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "tau": "./dist/main.js"
7
7
  },
8
8
  "files": [
9
- "dist/"
9
+ "dist/",
10
+ "patches/"
10
11
  ],
11
12
  "scripts": {
12
13
  "build": "tsc -p tsconfig.json",
@@ -14,7 +15,8 @@
14
15
  "precheck": "node scripts/generate-version.js",
15
16
  "prebuild": "node scripts/generate-version.js",
16
17
  "start": "node dist/main.js",
17
- "test": "npm run build && vitest run"
18
+ "test": "npm run build && vitest run",
19
+ "postinstall": "patch-package"
18
20
  },
19
21
  "publishConfig": {
20
22
  "access": "public"
@@ -24,6 +26,7 @@
24
26
  "@mariozechner/pi-tui": "0.47.0",
25
27
  "@sinclair/typebox": "^0.34.47",
26
28
  "chalk": "^5.6.2",
29
+ "patch-package": "^8.0.1",
27
30
  "strip-ansi": "^7.1.2",
28
31
  "yaml": "^2.8.2",
29
32
  "zod": "^4.3.5"
@@ -0,0 +1,19 @@
1
+ diff --git a/node_modules/@mariozechner/pi-ai/dist/constants.js b/node_modules/@mariozechner/pi-ai/dist/constants.js
2
+ index 16aef01..fa976f2 100644
3
+ --- a/node_modules/@mariozechner/pi-ai/dist/constants.js
4
+ +++ b/node_modules/@mariozechner/pi-ai/dist/constants.js
5
+ @@ -2,13 +2,5 @@
6
+ * Static Pi instructions for OpenAI Codex.
7
+ * This string is whitelisted by OpenAI and must not change.
8
+ */
9
+ -export const PI_STATIC_INSTRUCTIONS = `You are pi, an expert coding assistant. You help users with coding tasks by reading files, executing commands, editing code, and writing new files.
10
+ -
11
+ -Pi specific Documentation:
12
+ -- Main documentation: pi-internal://README.md
13
+ -- Additional docs: pi-internal://docs
14
+ -- Examples: pi-internal://examples (extensions, custom tools, SDK)
15
+ -- When asked to create: custom models/providers (README.md), extensions (docs/extensions.md, examples/extensions/), themes (docs/theme.md), skills (docs/skills.md), TUI components (docs/tui.md - has copy-paste patterns)
16
+ -- Always read the doc, examples, AND follow .md cross-references before implementing
17
+ -`;
18
+ +export const PI_STATIC_INSTRUCTIONS = `You are pi, an expert coding assistant. You help users with coding tasks by reading files, executing commands, editing code, and writing new files.`;
19
+ //# sourceMappingURL=constants.js.map