pluidr 0.7.0 → 0.7.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.
Files changed (53) hide show
  1. package/LICENSE +20 -20
  2. package/README.md +365 -365
  3. package/bin/pluidr.js +3 -3
  4. package/package.json +45 -45
  5. package/src/cli/commands/doctor.js +113 -101
  6. package/src/cli/commands/init.js +47 -43
  7. package/src/cli/commands/launch.js +46 -44
  8. package/src/cli/commands/uninstall.js +90 -63
  9. package/src/cli/commands/update.js +6 -6
  10. package/src/cli/index.js +57 -57
  11. package/src/cli/wizard/selectModelTier.js +40 -40
  12. package/src/core/agentPromptWriter.js +32 -32
  13. package/src/core/agentPromptWriter.test.js +56 -56
  14. package/src/core/backup.js +46 -40
  15. package/src/core/configBuilder.js +32 -32
  16. package/src/core/configBuilder.test.js +93 -93
  17. package/src/core/configWriter.js +10 -10
  18. package/src/core/identityHeader.js +8 -8
  19. package/src/core/paths.js +11 -9
  20. package/src/core/paths.test.js +29 -21
  21. package/src/core/pluginWriter.js +29 -29
  22. package/src/core/squeezeInstaller.js +158 -161
  23. package/src/core/squeezeInstaller.test.js +79 -75
  24. package/src/core/themeWriter.js +12 -0
  25. package/src/core/themeWriter.test.js +29 -0
  26. package/src/core/tuiConfigWriter.js +22 -0
  27. package/src/core/tuiConfigWriter.test.js +38 -0
  28. package/src/core/version.js +8 -8
  29. package/src/core/versionCheck.js +44 -35
  30. package/src/core/versionCheck.test.js +12 -2
  31. package/src/plugins/README.md +68 -68
  32. package/src/plugins/pluidr-squeeze.js +77 -77
  33. package/src/templates/agent-prompts/auditor.txt +20 -20
  34. package/src/templates/agent-prompts/coder.txt +87 -87
  35. package/src/templates/agent-prompts/compose-reporter.txt +55 -55
  36. package/src/templates/agent-prompts/composer.txt +429 -430
  37. package/src/templates/agent-prompts/debug-reporter.txt +65 -65
  38. package/src/templates/agent-prompts/debugger.txt +152 -151
  39. package/src/templates/agent-prompts/fixer.txt +66 -66
  40. package/src/templates/agent-prompts/hierarchy.txt +96 -96
  41. package/src/templates/agent-prompts/inspector.txt +79 -79
  42. package/src/templates/agent-prompts/patcher.txt +20 -20
  43. package/src/templates/agent-prompts/plan-checker.txt +45 -45
  44. package/src/templates/agent-prompts/plan-writer.txt +57 -57
  45. package/src/templates/agent-prompts/probe-reporter.txt +62 -62
  46. package/src/templates/agent-prompts/prober.txt +94 -90
  47. package/src/templates/agent-prompts/researcher.txt +48 -48
  48. package/src/templates/agent-prompts/reviewer.txt +57 -57
  49. package/src/templates/agent-prompts/tester.txt +66 -66
  50. package/src/templates/agent-prompts/tracer.txt +33 -33
  51. package/src/templates/model-defaults.json +73 -73
  52. package/src/templates/opencode.config.json +482 -481
  53. package/src/templates/themes/pluidr-contrast.json +177 -0
@@ -0,0 +1,177 @@
1
+ {
2
+ "$schema": "https://opencode.ai/theme.json",
3
+ "theme": {
4
+ "primary": {
5
+ "dark": "#ff7039",
6
+ "light": "#ff7039"
7
+ },
8
+ "secondary": {
9
+ "dark": "#99f3ff",
10
+ "light": "#99f3ff"
11
+ },
12
+ "accent": {
13
+ "dark": "#ff7039",
14
+ "light": "#ff7039"
15
+ },
16
+ "error": {
17
+ "dark": "#fc5d7c",
18
+ "light": "#fc5d7c"
19
+ },
20
+ "warning": {
21
+ "dark": "#ff669c",
22
+ "light": "#ff669c"
23
+ },
24
+ "success": {
25
+ "dark": "#00cc76",
26
+ "light": "#00cc76"
27
+ },
28
+ "info": {
29
+ "dark": "#00b4cc",
30
+ "light": "#00b4cc"
31
+ },
32
+ "text": {
33
+ "dark": "#ffffff",
34
+ "light": "#ffffff"
35
+ },
36
+ "textMuted": {
37
+ "dark": "#888888",
38
+ "light": "#888888"
39
+ },
40
+ "background": {
41
+ "dark": "#000000",
42
+ "light": "#000000"
43
+ },
44
+ "backgroundPanel": {
45
+ "dark": "#000000",
46
+ "light": "#000000"
47
+ },
48
+ "backgroundElement": {
49
+ "dark": "#000000",
50
+ "light": "#000000"
51
+ },
52
+ "border": {
53
+ "dark": "#101520",
54
+ "light": "#101520"
55
+ },
56
+ "borderActive": {
57
+ "dark": "#ff7039",
58
+ "light": "#ff7039"
59
+ },
60
+ "borderSubtle": {
61
+ "dark": "#101520",
62
+ "light": "#101520"
63
+ },
64
+ "diffAdded": {
65
+ "dark": "#00cc76",
66
+ "light": "#00cc76"
67
+ },
68
+ "diffRemoved": {
69
+ "dark": "#fc5d7c",
70
+ "light": "#fc5d7c"
71
+ },
72
+ "diffContext": {
73
+ "dark": "#888888",
74
+ "light": "#888888"
75
+ },
76
+ "diffAddedBg": {
77
+ "dark": "#1a2618",
78
+ "light": "#1a2618"
79
+ },
80
+ "diffRemovedBg": {
81
+ "dark": "#2a1a1a",
82
+ "light": "#2a1a1a"
83
+ },
84
+ "diffContextBg": {
85
+ "dark": "#000000",
86
+ "light": "#000000"
87
+ },
88
+ "markdownText": {
89
+ "dark": "#ffffff",
90
+ "light": "#ffffff"
91
+ },
92
+ "markdownHeading": {
93
+ "dark": "#ff669c",
94
+ "light": "#ff669c"
95
+ },
96
+ "markdownLink": {
97
+ "dark": "#99f3ff",
98
+ "light": "#99f3ff"
99
+ },
100
+ "markdownLinkText": {
101
+ "dark": "#ff7039",
102
+ "light": "#ff7039"
103
+ },
104
+ "markdownCode": {
105
+ "dark": "#66ffbf",
106
+ "light": "#66ffbf"
107
+ },
108
+ "markdownBlockQuote": {
109
+ "dark": "#888888",
110
+ "light": "#888888"
111
+ },
112
+ "markdownStrong": {
113
+ "dark": "#ff7039",
114
+ "light": "#ff7039"
115
+ },
116
+ "syntaxComment": {
117
+ "dark": "#888888",
118
+ "light": "#888888"
119
+ },
120
+ "syntaxKeyword": {
121
+ "dark": "#ff669c",
122
+ "light": "#ff669c"
123
+ },
124
+ "syntaxFunction": {
125
+ "dark": "#00b4cc",
126
+ "light": "#00b4cc"
127
+ },
128
+ "syntaxVariable": {
129
+ "dark": "#ffb966",
130
+ "light": "#ffb966"
131
+ },
132
+ "syntaxString": {
133
+ "dark": "#66ffbf",
134
+ "light": "#66ffbf"
135
+ },
136
+ "syntaxNumber": {
137
+ "dark": "#a000ff",
138
+ "light": "#a000ff"
139
+ },
140
+ "syntaxType": {
141
+ "dark": "#99f3ff",
142
+ "light": "#99f3ff"
143
+ },
144
+ "syntaxOperator": {
145
+ "dark": "#ff669c",
146
+ "light": "#ff669c"
147
+ },
148
+ "syntaxPunctuation": {
149
+ "dark": "#ffffff",
150
+ "light": "#ffffff"
151
+ },
152
+ "inputBackground": {
153
+ "dark": "#000000",
154
+ "light": "#000000"
155
+ },
156
+ "InputBorder": {
157
+ "dark": "#101520",
158
+ "light": "#101520"
159
+ },
160
+ "InputBorderActive": {
161
+ "dark": "#ff7039",
162
+ "light": "#ff7039"
163
+ },
164
+ "inputPrompt": {
165
+ "dark": "#ff7039",
166
+ "light": "#ff7039"
167
+ },
168
+ "inputCursor": {
169
+ "dark": "#ff7039",
170
+ "light": "#ff7039"
171
+ },
172
+ "inputText": {
173
+ "dark": "#ffffff",
174
+ "light": "#ffffff"
175
+ }
176
+ }
177
+ }