@matyah00/openpi 0.1.2
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/README.md +117 -0
- package/agents/agent-chain.yaml +113 -0
- package/agents/backend.md +13 -0
- package/agents/basher.md +27 -0
- package/agents/builder.md +14 -0
- package/agents/code-searcher.md +27 -0
- package/agents/context-pruner.md +29 -0
- package/agents/directory-lister.md +25 -0
- package/agents/documenter.md +13 -0
- package/agents/editor.md +27 -0
- package/agents/file-picker.md +27 -0
- package/agents/frontend.md +14 -0
- package/agents/glob-matcher.md +25 -0
- package/agents/librarian.md +27 -0
- package/agents/loop-controller.md +41 -0
- package/agents/pi-pi/agent-expert.md +97 -0
- package/agents/pi-pi/cli-expert.md +41 -0
- package/agents/pi-pi/config-expert.md +63 -0
- package/agents/pi-pi/ext-expert.md +43 -0
- package/agents/pi-pi/keybinding-expert.md +134 -0
- package/agents/pi-pi/pi-orchestrator.md +57 -0
- package/agents/pi-pi/prompt-expert.md +70 -0
- package/agents/pi-pi/skill-expert.md +42 -0
- package/agents/pi-pi/theme-expert.md +40 -0
- package/agents/pi-pi/tui-expert.md +85 -0
- package/agents/plan-reviewer.md +22 -0
- package/agents/planner.md +14 -0
- package/agents/problem-architect.md +55 -0
- package/agents/red-team.md +13 -0
- package/agents/reviewer.md +14 -0
- package/agents/rule-verifier.md +35 -0
- package/agents/scout.md +14 -0
- package/agents/security-auditor.md +35 -0
- package/agents/ship-guard.md +34 -0
- package/agents/spec-reviewer.md +41 -0
- package/agents/teams.yaml +73 -0
- package/agents/tester.md +27 -0
- package/agents/thinker.md +26 -0
- package/agents/worker.md +27 -0
- package/damage-control-rules.yaml +277 -0
- package/extensions/agent-chain.ts +293 -0
- package/extensions/agent-team.ts +312 -0
- package/extensions/audit-tools.ts +260 -0
- package/extensions/commands.ts +169 -0
- package/extensions/damage-control-continue.ts +243 -0
- package/extensions/lib/packagePaths.ts +13 -0
- package/extensions/minimal.ts +34 -0
- package/extensions/openpi.ts +255 -0
- package/extensions/pure-focus.ts +24 -0
- package/extensions/purpose-gate.ts +84 -0
- package/extensions/search-tools.ts +277 -0
- package/extensions/state-tools.ts +276 -0
- package/extensions/system-select.ts +120 -0
- package/extensions/theme-cycler.ts +181 -0
- package/extensions/themeMap.ts +145 -0
- package/extensions/tool-counter-widget.ts +68 -0
- package/extensions/tool-counter.ts +102 -0
- package/extensions/workflow.ts +642 -0
- package/package.json +60 -0
- package/prompts/blueprint.md +66 -0
- package/prompts/clarify.md +26 -0
- package/prompts/compress.md +23 -0
- package/prompts/debate.md +23 -0
- package/prompts/deep.md +36 -0
- package/prompts/deps.md +24 -0
- package/prompts/explore.md +22 -0
- package/prompts/ghost-test.md +22 -0
- package/prompts/goal.md +26 -0
- package/prompts/parallel.md +42 -0
- package/prompts/plan-team.md +31 -0
- package/prompts/prime.md +17 -0
- package/prompts/review.md +23 -0
- package/prompts/sentinel.md +29 -0
- package/prompts/ship.md +30 -0
- package/prompts/snapshot.md +26 -0
- package/prompts/spec.md +58 -0
- package/prompts/test.md +13 -0
- package/prompts/validate.md +19 -0
- package/skills/bowser/SKILL.md +114 -0
- package/skills/env-scanner/SKILL.md +25 -0
- package/skills/security-guard/SKILL.md +24 -0
- package/skills/session-continuity/SKILL.md +20 -0
- package/skills/spec-driven/SKILL.md +25 -0
- package/skills/test-first/SKILL.md +23 -0
- package/skills/ultrathink/SKILL.md +27 -0
- package/themes/catppuccin-mocha.json +86 -0
- package/themes/cyberpunk.json +81 -0
- package/themes/dracula.json +81 -0
- package/themes/everforest.json +82 -0
- package/themes/gruvbox.json +80 -0
- package/themes/midnight-ocean.json +76 -0
- package/themes/nord.json +84 -0
- package/themes/ocean-breeze.json +83 -0
- package/themes/rose-pine.json +82 -0
- package/themes/synthwave.json +82 -0
- package/themes/tokyo-night.json +83 -0
- package/tsconfig.json +15 -0
- package/types/pi-shims.d.ts +102 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: env-scanner
|
|
3
|
+
description: Use when entering an unfamiliar project, diagnosing setup/build issues, detecting stack, package managers, frameworks, git state, or project structure.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Env Scanner
|
|
7
|
+
|
|
8
|
+
Use the Pi-native `env_scan` tool first.
|
|
9
|
+
|
|
10
|
+
It reports:
|
|
11
|
+
|
|
12
|
+
- working directory
|
|
13
|
+
- git branch and status
|
|
14
|
+
- detected frameworks
|
|
15
|
+
- dependency manifests and lockfiles
|
|
16
|
+
- top-level project structure
|
|
17
|
+
|
|
18
|
+
Fallback if the tool is unavailable:
|
|
19
|
+
|
|
20
|
+
1. List the project root.
|
|
21
|
+
2. Check `package.json`, `pyproject.toml`, `requirements.txt`, `Cargo.toml`, `go.mod`, and `Dockerfile`.
|
|
22
|
+
3. Check `git status --short` and current branch.
|
|
23
|
+
4. Read the first part of `README.md` if present.
|
|
24
|
+
|
|
25
|
+
Keep the output compact and evidence-based.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: security-guard
|
|
3
|
+
description: Use before ship/deploy, when handling credentials or env files, importing external code, changing automation, or reviewing security-sensitive code.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Security Guard
|
|
7
|
+
|
|
8
|
+
Use these Pi-native tools when available:
|
|
9
|
+
|
|
10
|
+
1. `secret_scan` for credential exposure.
|
|
11
|
+
2. `dependency_inventory` for supply-chain posture.
|
|
12
|
+
3. `ghost_test_scan` before trusting tests.
|
|
13
|
+
4. `code_search_batch` for unsafe execution and injection patterns.
|
|
14
|
+
|
|
15
|
+
Never print full secrets. Redact values.
|
|
16
|
+
|
|
17
|
+
High-signal patterns to check:
|
|
18
|
+
|
|
19
|
+
- hardcoded cloud, Git, package, payment, mail, or private-key credentials
|
|
20
|
+
- `eval`, shell execution, unsafe deserialization, path traversal
|
|
21
|
+
- prompt-injection strings in agent, command, skill, docs, or config files
|
|
22
|
+
- missing lockfiles or loose dependency pins
|
|
23
|
+
|
|
24
|
+
Report `CLEAN`, `WARNING`, or `BLOCKED`, with exact file paths and line numbers.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: session-continuity
|
|
3
|
+
description: Use when context is long, resuming work, summarizing progress, nearing compaction, or preparing to stop.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Session Continuity
|
|
7
|
+
|
|
8
|
+
Use `/compress` or the `context-pruner` agent to produce a continuation brief.
|
|
9
|
+
|
|
10
|
+
The brief should include:
|
|
11
|
+
|
|
12
|
+
1. Current objective.
|
|
13
|
+
2. User constraints.
|
|
14
|
+
3. Files changed or inspected.
|
|
15
|
+
4. Commands run and outcomes.
|
|
16
|
+
5. Decisions made.
|
|
17
|
+
6. Remaining work.
|
|
18
|
+
7. Risks and blockers.
|
|
19
|
+
|
|
20
|
+
Do not solve new work during compression. Preserve exact paths and command outcomes.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: spec-driven
|
|
3
|
+
description: Use when a request is vague, requirements are unclear, or a feature should be specified before planning or coding.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Spec Driven Workflow
|
|
7
|
+
|
|
8
|
+
Use this order:
|
|
9
|
+
|
|
10
|
+
1. `/clarify` if behavior, scope, acceptance criteria, or failure modes are unclear.
|
|
11
|
+
2. `/spec` to write the requirements contract.
|
|
12
|
+
3. `spec-reviewer` to gate the spec.
|
|
13
|
+
4. `/blueprint` or `/deep` to plan implementation.
|
|
14
|
+
5. `/add` or `/fix` to implement.
|
|
15
|
+
6. `/validate` and `/ship` before completion.
|
|
16
|
+
|
|
17
|
+
A good spec has:
|
|
18
|
+
|
|
19
|
+
- one clear goal
|
|
20
|
+
- at least two user stories
|
|
21
|
+
- at least three testable acceptance criteria
|
|
22
|
+
- explicit out-of-scope items
|
|
23
|
+
- failure modes
|
|
24
|
+
- constraints
|
|
25
|
+
- no unresolved blocking questions
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: test-first
|
|
3
|
+
description: Use before implementing production code, fixing bugs, refactoring, or when asked about tests, coverage, validation, or TDD.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Test First
|
|
7
|
+
|
|
8
|
+
TDD is opt-in. Check both:
|
|
9
|
+
|
|
10
|
+
1. The project has a written test-first rule.
|
|
11
|
+
2. Existing tests are present.
|
|
12
|
+
|
|
13
|
+
If both are true:
|
|
14
|
+
|
|
15
|
+
1. Write the failing test first.
|
|
16
|
+
2. Run it and confirm it fails for the right reason.
|
|
17
|
+
3. Implement the smallest change.
|
|
18
|
+
4. Re-run and confirm green.
|
|
19
|
+
5. Refactor only after green.
|
|
20
|
+
|
|
21
|
+
If either signal is missing, suggest a targeted test but do not block implementation.
|
|
22
|
+
|
|
23
|
+
Before trusting green tests, use `ghost_test_scan` for static test-integrity checks when the change is important.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ultrathink
|
|
3
|
+
description: Use for hard debugging, architecture tradeoffs, risky plans, cross-file coupling analysis, root-cause work, adversarial decision making, or explicit deep/ultrathink requests.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Ultrathink
|
|
7
|
+
|
|
8
|
+
Use deeper reasoning internally while keeping final output concise.
|
|
9
|
+
|
|
10
|
+
Apply when:
|
|
11
|
+
|
|
12
|
+
- tracing coupling across many files
|
|
13
|
+
- comparing multiple architecture options
|
|
14
|
+
- debugging uncertain root causes
|
|
15
|
+
- planning parallel waves
|
|
16
|
+
- making a decision with costly rollback
|
|
17
|
+
- challenging assumptions in a plan
|
|
18
|
+
|
|
19
|
+
Protocol:
|
|
20
|
+
|
|
21
|
+
1. Gather evidence before choosing a path.
|
|
22
|
+
2. Consider 2-3 plausible approaches or root causes.
|
|
23
|
+
3. Trace downstream effects across data, APIs, tests, UX, and operations.
|
|
24
|
+
4. Challenge the obvious answer.
|
|
25
|
+
5. Define what verification would prove the answer.
|
|
26
|
+
|
|
27
|
+
Do not expose hidden reasoning. Output decisions, evidence, tradeoffs, and next verification only.
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
|
|
3
|
+
"name": "catppuccin-mocha",
|
|
4
|
+
"vars": {
|
|
5
|
+
"bg": "#1e1e2e",
|
|
6
|
+
"bgDark": "#181825",
|
|
7
|
+
"bgDeep": "#13131e",
|
|
8
|
+
"surface": "#2a2a3c",
|
|
9
|
+
"selection": "#34344a",
|
|
10
|
+
"bgRed": "#2e1420",
|
|
11
|
+
"bgGreen": "#142218",
|
|
12
|
+
"bgPeach": "#2e2010",
|
|
13
|
+
"bgBlue": "#141e38",
|
|
14
|
+
"bgMauve": "#261840",
|
|
15
|
+
"bgTeal": "#122830",
|
|
16
|
+
"comment": "#d5bcff",
|
|
17
|
+
"fg": "#ffffff",
|
|
18
|
+
"fgSoft": "#bbbbbb",
|
|
19
|
+
"red": "#ff7eb3",
|
|
20
|
+
"maroon": "#ffa0b8",
|
|
21
|
+
"peach": "#ffb370",
|
|
22
|
+
"yellow": "#ffe585",
|
|
23
|
+
"green": "#7af5a0",
|
|
24
|
+
"teal": "#60f0d8",
|
|
25
|
+
"sky": "#6ae4ff",
|
|
26
|
+
"sapphire": "#5cceff",
|
|
27
|
+
"blue": "#7db8ff",
|
|
28
|
+
"lavender": "#bfb8ff",
|
|
29
|
+
"mauve": "#d9a0ff",
|
|
30
|
+
"flamingo": "#ffc4c4",
|
|
31
|
+
"pink": "#ffb0e0"
|
|
32
|
+
},
|
|
33
|
+
"colors": {
|
|
34
|
+
"accent": "mauve",
|
|
35
|
+
"border": "selection",
|
|
36
|
+
"borderAccent": "mauve",
|
|
37
|
+
"borderMuted": "surface",
|
|
38
|
+
"success": "green",
|
|
39
|
+
"error": "red",
|
|
40
|
+
"warning": "yellow",
|
|
41
|
+
"muted": "comment",
|
|
42
|
+
"dim": "comment",
|
|
43
|
+
"text": "fg",
|
|
44
|
+
"thinkingText": "teal",
|
|
45
|
+
"selectedBg": "bgMauve",
|
|
46
|
+
"userMessageBg": "bgBlue",
|
|
47
|
+
"userMessageText": "fg",
|
|
48
|
+
"customMessageBg": "bgTeal",
|
|
49
|
+
"customMessageText": "fg",
|
|
50
|
+
"customMessageLabel": "teal",
|
|
51
|
+
"toolPendingBg": "bgPeach",
|
|
52
|
+
"toolSuccessBg": "bgGreen",
|
|
53
|
+
"toolErrorBg": "bgRed",
|
|
54
|
+
"toolTitle": "peach",
|
|
55
|
+
"toolOutput": "fgSoft",
|
|
56
|
+
"mdHeading": "peach",
|
|
57
|
+
"mdLink": "blue",
|
|
58
|
+
"mdLinkUrl": "comment",
|
|
59
|
+
"mdCode": "sky",
|
|
60
|
+
"mdCodeBlock": "fgSoft",
|
|
61
|
+
"mdCodeBlockBorder": "surface",
|
|
62
|
+
"mdQuote": "green",
|
|
63
|
+
"mdQuoteBorder": "surface",
|
|
64
|
+
"mdHr": "surface",
|
|
65
|
+
"mdListBullet": "mauve",
|
|
66
|
+
"toolDiffAdded": "green",
|
|
67
|
+
"toolDiffRemoved": "red",
|
|
68
|
+
"toolDiffContext": "comment",
|
|
69
|
+
"syntaxComment": "comment",
|
|
70
|
+
"syntaxKeyword": "mauve",
|
|
71
|
+
"syntaxFunction": "blue",
|
|
72
|
+
"syntaxVariable": "pink",
|
|
73
|
+
"syntaxString": "green",
|
|
74
|
+
"syntaxNumber": "peach",
|
|
75
|
+
"syntaxType": "sky",
|
|
76
|
+
"syntaxOperator": "lavender",
|
|
77
|
+
"syntaxPunctuation": "fgSoft",
|
|
78
|
+
"thinkingOff": "surface",
|
|
79
|
+
"thinkingMinimal": "comment",
|
|
80
|
+
"thinkingLow": "blue",
|
|
81
|
+
"thinkingMedium": "sky",
|
|
82
|
+
"thinkingHigh": "mauve",
|
|
83
|
+
"thinkingXhigh": "red",
|
|
84
|
+
"bashMode": "yellow"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
|
|
3
|
+
"name": "cyberpunk",
|
|
4
|
+
"vars": {
|
|
5
|
+
"bg": "#0a0a14",
|
|
6
|
+
"bgDark": "#06060e",
|
|
7
|
+
"bgDeep": "#040410",
|
|
8
|
+
"surface": "#12122a",
|
|
9
|
+
"selection": "#1a1a38",
|
|
10
|
+
"bgRed": "#2a0a12",
|
|
11
|
+
"bgOrange": "#2a1408",
|
|
12
|
+
"bgSky": "#081a30",
|
|
13
|
+
"bgCyan": "#0a2228",
|
|
14
|
+
"bgWarm": "#220a30",
|
|
15
|
+
"bgPink": "#2a0a22",
|
|
16
|
+
"fg": "#ffffff",
|
|
17
|
+
"fgSoft": "#bbbbbb",
|
|
18
|
+
"comment": "#ffe600",
|
|
19
|
+
"yellow": "#ffe600",
|
|
20
|
+
"cyan": "#00e5ff",
|
|
21
|
+
"magenta": "#ff00aa",
|
|
22
|
+
"red": "#ff1744",
|
|
23
|
+
"green": "#00e676",
|
|
24
|
+
"purple": "#aa00ff",
|
|
25
|
+
"blue": "#2979ff",
|
|
26
|
+
"orange": "#ff6d00"
|
|
27
|
+
},
|
|
28
|
+
"colors": {
|
|
29
|
+
"accent": "cyan",
|
|
30
|
+
"border": "magenta",
|
|
31
|
+
"borderAccent": "yellow",
|
|
32
|
+
"borderMuted": "surface",
|
|
33
|
+
"success": "green",
|
|
34
|
+
"error": "red",
|
|
35
|
+
"warning": "orange",
|
|
36
|
+
"muted": "comment",
|
|
37
|
+
"dim": "comment",
|
|
38
|
+
"text": "fg",
|
|
39
|
+
"thinkingText": "green",
|
|
40
|
+
"selectedBg": "bgPink",
|
|
41
|
+
"userMessageBg": "bgWarm",
|
|
42
|
+
"userMessageText": "fg",
|
|
43
|
+
"customMessageBg": "bgCyan",
|
|
44
|
+
"customMessageText": "fg",
|
|
45
|
+
"customMessageLabel": "cyan",
|
|
46
|
+
"toolPendingBg": "bgOrange",
|
|
47
|
+
"toolSuccessBg": "bgSky",
|
|
48
|
+
"toolErrorBg": "bgRed",
|
|
49
|
+
"toolTitle": "yellow",
|
|
50
|
+
"toolOutput": "fgSoft",
|
|
51
|
+
"mdHeading": "magenta",
|
|
52
|
+
"mdLink": "cyan",
|
|
53
|
+
"mdLinkUrl": "comment",
|
|
54
|
+
"mdCode": "green",
|
|
55
|
+
"mdCodeBlock": "fgSoft",
|
|
56
|
+
"mdCodeBlockBorder": "surface",
|
|
57
|
+
"mdQuote": "purple",
|
|
58
|
+
"mdQuoteBorder": "surface",
|
|
59
|
+
"mdHr": "surface",
|
|
60
|
+
"mdListBullet": "yellow",
|
|
61
|
+
"toolDiffAdded": "green",
|
|
62
|
+
"toolDiffRemoved": "red",
|
|
63
|
+
"toolDiffContext": "comment",
|
|
64
|
+
"syntaxComment": "comment",
|
|
65
|
+
"syntaxKeyword": "magenta",
|
|
66
|
+
"syntaxFunction": "cyan",
|
|
67
|
+
"syntaxVariable": "yellow",
|
|
68
|
+
"syntaxString": "green",
|
|
69
|
+
"syntaxNumber": "purple",
|
|
70
|
+
"syntaxType": "blue",
|
|
71
|
+
"syntaxOperator": "magenta",
|
|
72
|
+
"syntaxPunctuation": "fgSoft",
|
|
73
|
+
"thinkingOff": "surface",
|
|
74
|
+
"thinkingMinimal": "comment",
|
|
75
|
+
"thinkingLow": "blue",
|
|
76
|
+
"thinkingMedium": "purple",
|
|
77
|
+
"thinkingHigh": "cyan",
|
|
78
|
+
"thinkingXhigh": "magenta",
|
|
79
|
+
"bashMode": "orange"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
|
|
3
|
+
"name": "dracula",
|
|
4
|
+
"vars": {
|
|
5
|
+
"bg": "#1a1b26",
|
|
6
|
+
"bgDark": "#161722",
|
|
7
|
+
"bgDeep": "#141520",
|
|
8
|
+
"surface": "#252738",
|
|
9
|
+
"selection": "#2c2e44",
|
|
10
|
+
"bgRed": "#2e1220",
|
|
11
|
+
"bgOrange": "#2e1c12",
|
|
12
|
+
"bgGreen": "#122e1a",
|
|
13
|
+
"bgCyan": "#122a2e",
|
|
14
|
+
"bgPurple": "#261536",
|
|
15
|
+
"bgPink": "#2e1228",
|
|
16
|
+
"fg": "#ffffff",
|
|
17
|
+
"fgSoft": "#bbbbbb",
|
|
18
|
+
"comment": "#f8fcc4",
|
|
19
|
+
"cyan": "#8be9fd",
|
|
20
|
+
"green": "#50fa7b",
|
|
21
|
+
"orange": "#ffb86c",
|
|
22
|
+
"pink": "#ff79c6",
|
|
23
|
+
"purple": "#bd93f9",
|
|
24
|
+
"red": "#ff5555",
|
|
25
|
+
"yellow": "#f1fa8c",
|
|
26
|
+
"blue": "#6296e4"
|
|
27
|
+
},
|
|
28
|
+
"colors": {
|
|
29
|
+
"accent": "purple",
|
|
30
|
+
"border": "pink",
|
|
31
|
+
"borderAccent": "purple",
|
|
32
|
+
"borderMuted": "surface",
|
|
33
|
+
"success": "green",
|
|
34
|
+
"error": "red",
|
|
35
|
+
"warning": "orange",
|
|
36
|
+
"muted": "comment",
|
|
37
|
+
"dim": "comment",
|
|
38
|
+
"text": "fg",
|
|
39
|
+
"thinkingText": "cyan",
|
|
40
|
+
"selectedBg": "bgPurple",
|
|
41
|
+
"userMessageBg": "bgPink",
|
|
42
|
+
"userMessageText": "fg",
|
|
43
|
+
"customMessageBg": "bgCyan",
|
|
44
|
+
"customMessageText": "fg",
|
|
45
|
+
"customMessageLabel": "cyan",
|
|
46
|
+
"toolPendingBg": "bgOrange",
|
|
47
|
+
"toolSuccessBg": "bgGreen",
|
|
48
|
+
"toolErrorBg": "bgRed",
|
|
49
|
+
"toolTitle": "pink",
|
|
50
|
+
"toolOutput": "fgSoft",
|
|
51
|
+
"mdHeading": "pink",
|
|
52
|
+
"mdLink": "cyan",
|
|
53
|
+
"mdLinkUrl": "comment",
|
|
54
|
+
"mdCode": "green",
|
|
55
|
+
"mdCodeBlock": "fgSoft",
|
|
56
|
+
"mdCodeBlockBorder": "surface",
|
|
57
|
+
"mdQuote": "purple",
|
|
58
|
+
"mdQuoteBorder": "surface",
|
|
59
|
+
"mdHr": "surface",
|
|
60
|
+
"mdListBullet": "pink",
|
|
61
|
+
"toolDiffAdded": "green",
|
|
62
|
+
"toolDiffRemoved": "red",
|
|
63
|
+
"toolDiffContext": "comment",
|
|
64
|
+
"syntaxComment": "comment",
|
|
65
|
+
"syntaxKeyword": "pink",
|
|
66
|
+
"syntaxFunction": "green",
|
|
67
|
+
"syntaxVariable": "fg",
|
|
68
|
+
"syntaxString": "yellow",
|
|
69
|
+
"syntaxNumber": "purple",
|
|
70
|
+
"syntaxType": "cyan",
|
|
71
|
+
"syntaxOperator": "pink",
|
|
72
|
+
"syntaxPunctuation": "fgSoft",
|
|
73
|
+
"thinkingOff": "surface",
|
|
74
|
+
"thinkingMinimal": "comment",
|
|
75
|
+
"thinkingLow": "blue",
|
|
76
|
+
"thinkingMedium": "purple",
|
|
77
|
+
"thinkingHigh": "cyan",
|
|
78
|
+
"thinkingXhigh": "pink",
|
|
79
|
+
"bashMode": "orange"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
|
|
3
|
+
"name": "everforest",
|
|
4
|
+
"vars": {
|
|
5
|
+
"bg": "#191f1d",
|
|
6
|
+
"bgDark": "#141a18",
|
|
7
|
+
"bg1": "#1e2522",
|
|
8
|
+
"bg2": "#222a28",
|
|
9
|
+
"surface": "#2c3532",
|
|
10
|
+
"selection": "#323e3a",
|
|
11
|
+
"bgRed": "#301718",
|
|
12
|
+
"bgOrange": "#302217",
|
|
13
|
+
"bgSky": "#192b34",
|
|
14
|
+
"bgCyan": "#172b26",
|
|
15
|
+
"bgWarm": "#351d29",
|
|
16
|
+
"bgPink": "#311c31",
|
|
17
|
+
"fg": "#ffffff",
|
|
18
|
+
"fgSoft": "#bbbbbb",
|
|
19
|
+
"comment": "#e7f4cd",
|
|
20
|
+
"red": "#eb7073",
|
|
21
|
+
"orange": "#f1a27e",
|
|
22
|
+
"yellow": "#eed096",
|
|
23
|
+
"green": "#bde481",
|
|
24
|
+
"aqua": "#78e292",
|
|
25
|
+
"teal": "#52e0bd",
|
|
26
|
+
"blue": "#78c8e2",
|
|
27
|
+
"purple": "#e689b5"
|
|
28
|
+
},
|
|
29
|
+
"colors": {
|
|
30
|
+
"accent": "green",
|
|
31
|
+
"border": "aqua",
|
|
32
|
+
"borderAccent": "green",
|
|
33
|
+
"borderMuted": "surface",
|
|
34
|
+
"success": "green",
|
|
35
|
+
"error": "red",
|
|
36
|
+
"warning": "orange",
|
|
37
|
+
"muted": "comment",
|
|
38
|
+
"dim": "comment",
|
|
39
|
+
"text": "fg",
|
|
40
|
+
"thinkingText": "teal",
|
|
41
|
+
"selectedBg": "bgCyan",
|
|
42
|
+
"userMessageBg": "bgWarm",
|
|
43
|
+
"userMessageText": "fg",
|
|
44
|
+
"customMessageBg": "bgSky",
|
|
45
|
+
"customMessageText": "fg",
|
|
46
|
+
"customMessageLabel": "aqua",
|
|
47
|
+
"toolPendingBg": "bgOrange",
|
|
48
|
+
"toolSuccessBg": "bgCyan",
|
|
49
|
+
"toolErrorBg": "bgRed",
|
|
50
|
+
"toolTitle": "green",
|
|
51
|
+
"toolOutput": "fgSoft",
|
|
52
|
+
"mdHeading": "yellow",
|
|
53
|
+
"mdLink": "blue",
|
|
54
|
+
"mdLinkUrl": "comment",
|
|
55
|
+
"mdCode": "aqua",
|
|
56
|
+
"mdCodeBlock": "fgSoft",
|
|
57
|
+
"mdCodeBlockBorder": "surface",
|
|
58
|
+
"mdQuote": "teal",
|
|
59
|
+
"mdQuoteBorder": "surface",
|
|
60
|
+
"mdHr": "surface",
|
|
61
|
+
"mdListBullet": "green",
|
|
62
|
+
"toolDiffAdded": "green",
|
|
63
|
+
"toolDiffRemoved": "red",
|
|
64
|
+
"toolDiffContext": "comment",
|
|
65
|
+
"syntaxComment": "comment",
|
|
66
|
+
"syntaxKeyword": "red",
|
|
67
|
+
"syntaxFunction": "green",
|
|
68
|
+
"syntaxVariable": "blue",
|
|
69
|
+
"syntaxString": "yellow",
|
|
70
|
+
"syntaxNumber": "purple",
|
|
71
|
+
"syntaxType": "aqua",
|
|
72
|
+
"syntaxOperator": "orange",
|
|
73
|
+
"syntaxPunctuation": "fgSoft",
|
|
74
|
+
"thinkingOff": "surface",
|
|
75
|
+
"thinkingMinimal": "comment",
|
|
76
|
+
"thinkingLow": "blue",
|
|
77
|
+
"thinkingMedium": "teal",
|
|
78
|
+
"thinkingHigh": "green",
|
|
79
|
+
"thinkingXhigh": "red",
|
|
80
|
+
"bashMode": "orange"
|
|
81
|
+
}
|
|
82
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
|
|
3
|
+
"name": "gruvbox",
|
|
4
|
+
"vars": {
|
|
5
|
+
"bg": "#221f1c",
|
|
6
|
+
"bgDark": "#1c1a17",
|
|
7
|
+
"bgDeep": "#171412",
|
|
8
|
+
"surface": "#322d29",
|
|
9
|
+
"selection": "#3f3731",
|
|
10
|
+
"bgRed": "#341714",
|
|
11
|
+
"bgOrange": "#322215",
|
|
12
|
+
"bgSky": "#152432",
|
|
13
|
+
"bgCyan": "#142924",
|
|
14
|
+
"bgWarm": "#322b15",
|
|
15
|
+
"bgPink": "#321524",
|
|
16
|
+
"comment": "#fcebc5",
|
|
17
|
+
"fg": "#ffffff",
|
|
18
|
+
"fgSoft": "#bbbbbb",
|
|
19
|
+
"red": "#fb4b37",
|
|
20
|
+
"green": "#ebed5e",
|
|
21
|
+
"yellow": "#fcd783",
|
|
22
|
+
"blue": "#67a6e4",
|
|
23
|
+
"purple": "#ca74e7",
|
|
24
|
+
"aqua": "#81e4be",
|
|
25
|
+
"orange": "#fd953f"
|
|
26
|
+
},
|
|
27
|
+
"colors": {
|
|
28
|
+
"accent": "orange",
|
|
29
|
+
"border": "yellow",
|
|
30
|
+
"borderAccent": "orange",
|
|
31
|
+
"borderMuted": "surface",
|
|
32
|
+
"success": "green",
|
|
33
|
+
"error": "red",
|
|
34
|
+
"warning": "yellow",
|
|
35
|
+
"muted": "comment",
|
|
36
|
+
"dim": "comment",
|
|
37
|
+
"text": "fg",
|
|
38
|
+
"thinkingText": "aqua",
|
|
39
|
+
"selectedBg": "bgWarm",
|
|
40
|
+
"userMessageBg": "bgOrange",
|
|
41
|
+
"userMessageText": "fg",
|
|
42
|
+
"customMessageBg": "bgCyan",
|
|
43
|
+
"customMessageText": "fg",
|
|
44
|
+
"customMessageLabel": "aqua",
|
|
45
|
+
"toolPendingBg": "bgSky",
|
|
46
|
+
"toolSuccessBg": "bgCyan",
|
|
47
|
+
"toolErrorBg": "bgRed",
|
|
48
|
+
"toolTitle": "orange",
|
|
49
|
+
"toolOutput": "fgSoft",
|
|
50
|
+
"mdHeading": "yellow",
|
|
51
|
+
"mdLink": "aqua",
|
|
52
|
+
"mdLinkUrl": "comment",
|
|
53
|
+
"mdCode": "green",
|
|
54
|
+
"mdCodeBlock": "fgSoft",
|
|
55
|
+
"mdCodeBlockBorder": "surface",
|
|
56
|
+
"mdQuote": "blue",
|
|
57
|
+
"mdQuoteBorder": "surface",
|
|
58
|
+
"mdHr": "surface",
|
|
59
|
+
"mdListBullet": "orange",
|
|
60
|
+
"toolDiffAdded": "green",
|
|
61
|
+
"toolDiffRemoved": "red",
|
|
62
|
+
"toolDiffContext": "comment",
|
|
63
|
+
"syntaxComment": "comment",
|
|
64
|
+
"syntaxKeyword": "red",
|
|
65
|
+
"syntaxFunction": "aqua",
|
|
66
|
+
"syntaxVariable": "blue",
|
|
67
|
+
"syntaxString": "green",
|
|
68
|
+
"syntaxNumber": "purple",
|
|
69
|
+
"syntaxType": "yellow",
|
|
70
|
+
"syntaxOperator": "orange",
|
|
71
|
+
"syntaxPunctuation": "fgSoft",
|
|
72
|
+
"thinkingOff": "surface",
|
|
73
|
+
"thinkingMinimal": "comment",
|
|
74
|
+
"thinkingLow": "blue",
|
|
75
|
+
"thinkingMedium": "aqua",
|
|
76
|
+
"thinkingHigh": "yellow",
|
|
77
|
+
"thinkingXhigh": "red",
|
|
78
|
+
"bashMode": "orange"
|
|
79
|
+
}
|
|
80
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
|
|
3
|
+
"name": "midnight-ocean",
|
|
4
|
+
"vars": {
|
|
5
|
+
"deepBlue": "#0a192f",
|
|
6
|
+
"oceanBlue": "#0077be",
|
|
7
|
+
"teal": "#00ced1",
|
|
8
|
+
"cyan": "#4fd1ed",
|
|
9
|
+
"softWhite": "#e6f1ff",
|
|
10
|
+
"mutedBlue": "#233554",
|
|
11
|
+
"lightMutedBlue": "#a8b2d1",
|
|
12
|
+
"slate": "#8892b0",
|
|
13
|
+
"successGreen": "#64ffda",
|
|
14
|
+
"errorRed": "#ff5f56",
|
|
15
|
+
"warningAmber": "#ffd700",
|
|
16
|
+
"purple": "#c678dd"
|
|
17
|
+
},
|
|
18
|
+
"colors": {
|
|
19
|
+
"accent": "oceanBlue",
|
|
20
|
+
"border": "mutedBlue",
|
|
21
|
+
"borderAccent": "teal",
|
|
22
|
+
"borderMuted": 236,
|
|
23
|
+
"success": "successGreen",
|
|
24
|
+
"error": "errorRed",
|
|
25
|
+
"warning": "warningAmber",
|
|
26
|
+
"muted": "slate",
|
|
27
|
+
"dim": 240,
|
|
28
|
+
"text": "softWhite",
|
|
29
|
+
"thinkingText": "teal",
|
|
30
|
+
"selectedBg": "#112240",
|
|
31
|
+
"userMessageBg": "#112240",
|
|
32
|
+
"userMessageText": "softWhite",
|
|
33
|
+
"customMessageBg": "#112240",
|
|
34
|
+
"customMessageText": "softWhite",
|
|
35
|
+
"customMessageLabel": "teal",
|
|
36
|
+
"toolPendingBg": "deepBlue",
|
|
37
|
+
"toolSuccessBg": "#0d2521",
|
|
38
|
+
"toolErrorBg": "#331616",
|
|
39
|
+
"toolTitle": "cyan",
|
|
40
|
+
"toolOutput": "lightMutedBlue",
|
|
41
|
+
"mdHeading": "teal",
|
|
42
|
+
"mdLink": "oceanBlue",
|
|
43
|
+
"mdLinkUrl": "slate",
|
|
44
|
+
"mdCode": "cyan",
|
|
45
|
+
"mdCodeBlock": "#011627",
|
|
46
|
+
"mdCodeBlockBorder": "mutedBlue",
|
|
47
|
+
"mdQuote": "slate",
|
|
48
|
+
"mdQuoteBorder": "mutedBlue",
|
|
49
|
+
"mdHr": "mutedBlue",
|
|
50
|
+
"mdListBullet": "teal",
|
|
51
|
+
"toolDiffAdded": "successGreen",
|
|
52
|
+
"toolDiffRemoved": "errorRed",
|
|
53
|
+
"toolDiffContext": "slate",
|
|
54
|
+
"syntaxComment": "slate",
|
|
55
|
+
"syntaxKeyword": "purple",
|
|
56
|
+
"syntaxFunction": "teal",
|
|
57
|
+
"syntaxVariable": "cyan",
|
|
58
|
+
"syntaxString": "successGreen",
|
|
59
|
+
"syntaxNumber": "warningAmber",
|
|
60
|
+
"syntaxType": "oceanBlue",
|
|
61
|
+
"syntaxOperator": "teal",
|
|
62
|
+
"syntaxPunctuation": "lightMutedBlue",
|
|
63
|
+
"thinkingOff": "mutedBlue",
|
|
64
|
+
"thinkingMinimal": "oceanBlue",
|
|
65
|
+
"thinkingLow": "teal",
|
|
66
|
+
"thinkingMedium": "cyan",
|
|
67
|
+
"thinkingHigh": "warningAmber",
|
|
68
|
+
"thinkingXhigh": "errorRed",
|
|
69
|
+
"bashMode": "warningAmber"
|
|
70
|
+
},
|
|
71
|
+
"export": {
|
|
72
|
+
"pageBg": "#0a192f",
|
|
73
|
+
"cardBg": "#112240",
|
|
74
|
+
"infoBg": "#0077be"
|
|
75
|
+
}
|
|
76
|
+
}
|