@artale/pi-pai 4.3.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/.github/workflows/ci.yml +51 -0
- package/AGENTS.md.pai +32 -0
- package/LICENSE +21 -0
- package/README.md +139 -0
- package/SYSTEM.md.pai +120 -0
- package/damage-control-rules.yaml +611 -0
- package/models.json.pai +43 -0
- package/package.json +65 -0
- package/skills/agents/SKILL.md +36 -0
- package/skills/content-analysis/SKILL.md +44 -0
- package/skills/investigation/SKILL.md +25 -0
- package/skills/media/SKILL.md +28 -0
- package/skills/research/SKILL.md +51 -0
- package/skills/scraping/SKILL.md +24 -0
- package/skills/security/SKILL.md +49 -0
- package/skills/telos/SKILL.md +37 -0
- package/skills/thinking/SKILL.md +52 -0
- package/src/extension.ts +1136 -0
- package/templates.json +68 -0
- package/tsconfig.json +18 -0
package/templates.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"trading": {
|
|
3
|
+
"mission": "Build a profitable algorithmic trading system",
|
|
4
|
+
"goals": [
|
|
5
|
+
"Develop and backtest core strategy",
|
|
6
|
+
"Achieve >55% win rate on paper trades",
|
|
7
|
+
"Deploy live with risk management",
|
|
8
|
+
"Maintain Sharpe ratio >1.5"
|
|
9
|
+
],
|
|
10
|
+
"challenges": [
|
|
11
|
+
"Overfitting risk on historical data",
|
|
12
|
+
"Execution latency in live markets"
|
|
13
|
+
]
|
|
14
|
+
},
|
|
15
|
+
"saas": {
|
|
16
|
+
"mission": "Launch a production SaaS product",
|
|
17
|
+
"goals": [
|
|
18
|
+
"Ship MVP with auth, billing, and core feature",
|
|
19
|
+
"Acquire first 10 paying users",
|
|
20
|
+
"Achieve <2s p95 page load",
|
|
21
|
+
"Set up CI/CD and monitoring"
|
|
22
|
+
],
|
|
23
|
+
"challenges": [
|
|
24
|
+
"Scope creep",
|
|
25
|
+
"Premature optimization"
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"devops": {
|
|
29
|
+
"mission": "Build reliable infrastructure and deployment pipeline",
|
|
30
|
+
"goals": [
|
|
31
|
+
"Automate deployments with zero downtime",
|
|
32
|
+
"Set up monitoring and alerting",
|
|
33
|
+
"Achieve 99.9% uptime SLA",
|
|
34
|
+
"Document runbooks for on-call"
|
|
35
|
+
],
|
|
36
|
+
"challenges": [
|
|
37
|
+
"Alert fatigue",
|
|
38
|
+
"Configuration drift"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"research": {
|
|
42
|
+
"mission": "Complete deep research project with actionable findings",
|
|
43
|
+
"goals": [
|
|
44
|
+
"Define research questions and scope",
|
|
45
|
+
"Collect and analyze primary sources",
|
|
46
|
+
"Synthesize findings into report",
|
|
47
|
+
"Present recommendations"
|
|
48
|
+
],
|
|
49
|
+
"challenges": [
|
|
50
|
+
"Source reliability",
|
|
51
|
+
"Scope management"
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
"agent": {
|
|
55
|
+
"mission": "Build and ship a production AI agent",
|
|
56
|
+
"goals": [
|
|
57
|
+
"Define agent capabilities and constraints",
|
|
58
|
+
"Implement tool use and error handling",
|
|
59
|
+
"Test with adversarial inputs",
|
|
60
|
+
"Deploy with monitoring and kill switch"
|
|
61
|
+
],
|
|
62
|
+
"challenges": [
|
|
63
|
+
"Prompt injection risk",
|
|
64
|
+
"Cost control",
|
|
65
|
+
"Hallucination detection"
|
|
66
|
+
]
|
|
67
|
+
}
|
|
68
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2020",
|
|
4
|
+
"module": "ESNext",
|
|
5
|
+
"lib": ["ES2020", "dom"],
|
|
6
|
+
"moduleResolution": "node",
|
|
7
|
+
"esModuleInterop": true,
|
|
8
|
+
"strict": true,
|
|
9
|
+
"outDir": "./dist",
|
|
10
|
+
"rootDir": "./src",
|
|
11
|
+
"declaration": true,
|
|
12
|
+
"declarationMap": true,
|
|
13
|
+
"sourceMap": true,
|
|
14
|
+
"skipLibCheck": true
|
|
15
|
+
},
|
|
16
|
+
"include": ["src/**/*"],
|
|
17
|
+
"exclude": ["node_modules", "dist"]
|
|
18
|
+
}
|