pi-goal-pro 1.0.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +397 -0
  3. package/index.ts +1037 -0
  4. package/package.json +63 -0
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "pi-goal-pro",
3
+ "version": "1.0.0",
4
+ "description": "Persistent autonomous goals for Pi — with no-progress detection, evidence-based completion, token budgets, and auto-continuation",
5
+ "type": "module",
6
+ "main": "./index.ts",
7
+ "types": "./index.ts",
8
+ "files": [
9
+ "index.ts",
10
+ "README.md",
11
+ "LICENSE"
12
+ ],
13
+ "keywords": [
14
+ "pi",
15
+ "pi-extension",
16
+ "pi-package",
17
+ "goal",
18
+ "autonomous",
19
+ "agent",
20
+ "coding-agent",
21
+ "pi-goal",
22
+ "pi-goal-pro",
23
+ "goal-mode",
24
+ "auto-continue",
25
+ "no-progress-detection",
26
+ "autonomous-agent",
27
+ "pi-coding-agent"
28
+ ],
29
+ "license": "MIT",
30
+ "author": "izzzzzi",
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "git+https://github.com/izzzzzi/pi-goal-pro.git"
34
+ },
35
+ "bugs": {
36
+ "url": "https://github.com/izzzzzi/pi-goal-pro/issues"
37
+ },
38
+ "homepage": "https://github.com/izzzzzi/pi-goal-pro#readme",
39
+ "pi": {
40
+ "extensions": [
41
+ "./index.ts"
42
+ ]
43
+ },
44
+ "peerDependencies": {
45
+ "@earendil-works/pi-coding-agent": ">=0.78.0",
46
+ "@earendil-works/pi-tui": ">=0.78.0",
47
+ "@earendil-works/pi-ai": ">=0.78.0",
48
+ "typebox": "*"
49
+ },
50
+ "devDependencies": {
51
+ "@biomejs/biome": "^2.4.0",
52
+ "typescript": "^5.8.0",
53
+ "tsx": "^4.0.0"
54
+ },
55
+ "scripts": {
56
+ "test": "npm run check && npm run test:unit",
57
+ "test:unit": "tsx --test tests/index.test.ts",
58
+ "check": "biome check .",
59
+ "format": "biome format --write .",
60
+ "lint": "biome lint .",
61
+ "dev": "pi -e ./index.ts"
62
+ }
63
+ }