codedeck 0.1.8 → 0.2.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.
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "CodeDeck Ultra",
3
+ "base": "dark",
4
+ "overrides": {
5
+ "claude": "#8BE9FD",
6
+ "claudeShimmer": "#C4F1FF",
7
+ "text": "#F8FAFC",
8
+ "inverseText": "#0B1020",
9
+ "inactive": "#94A3B8",
10
+ "inactiveShimmer": "#CBD5E1",
11
+ "subtle": "#475569",
12
+ "suggestion": "#67E8F9",
13
+ "permission": "#A78BFA",
14
+ "permissionShimmer": "#C4B5FD",
15
+ "remember": "#FACC15",
16
+ "success": "#34D399",
17
+ "error": "#FB7185",
18
+ "warning": "#FBBF24",
19
+ "warningShimmer": "#FDE68A",
20
+ "merged": "#C084FC",
21
+ "promptBorder": "#22D3EE",
22
+ "promptBorderShimmer": "#67E8F9",
23
+ "planMode": "#60A5FA",
24
+ "autoAccept": "#34D399",
25
+ "bashBorder": "#F59E0B",
26
+ "ide": "#C084FC",
27
+ "fastMode": "#F472B6",
28
+ "fastModeShimmer": "#F9A8D4",
29
+ "effortUltra": "#A78BFA",
30
+ "diffAdded": "#14532D",
31
+ "diffRemoved": "#7F1D1D",
32
+ "diffAddedDimmed": "#166534",
33
+ "diffRemovedDimmed": "#991B1B",
34
+ "diffAddedWord": "#22C55E",
35
+ "diffRemovedWord": "#EF4444",
36
+ "userMessageBackground": "#172554",
37
+ "userMessageBackgroundHover": "#1E3A8A",
38
+ "bashMessageBackgroundColor": "#451A03",
39
+ "memoryBackgroundColor": "#27272A",
40
+ "selectionBg": "#334155",
41
+ "rate_limit_fill": "#22D3EE",
42
+ "rate_limit_empty": "#334155",
43
+ "briefLabelYou": "#67E8F9",
44
+ "briefLabelClaude": "#A78BFA",
45
+ "red_FOR_SUBAGENTS_ONLY": "#FB7185",
46
+ "blue_FOR_SUBAGENTS_ONLY": "#60A5FA",
47
+ "green_FOR_SUBAGENTS_ONLY": "#34D399",
48
+ "yellow_FOR_SUBAGENTS_ONLY": "#FACC15",
49
+ "purple_FOR_SUBAGENTS_ONLY": "#C084FC",
50
+ "orange_FOR_SUBAGENTS_ONLY": "#FB923C",
51
+ "pink_FOR_SUBAGENTS_ONLY": "#F472B6",
52
+ "cyan_FOR_SUBAGENTS_ONLY": "#22D3EE",
53
+ "rainbow_red": "#EF4444",
54
+ "rainbow_red_shimmer": "#FCA5A5",
55
+ "rainbow_orange": "#F97316",
56
+ "rainbow_orange_shimmer": "#FDBA74",
57
+ "rainbow_yellow": "#EAB308",
58
+ "rainbow_yellow_shimmer": "#FDE047",
59
+ "rainbow_green": "#22C55E",
60
+ "rainbow_green_shimmer": "#86EFAC",
61
+ "rainbow_blue": "#3B82F6",
62
+ "rainbow_blue_shimmer": "#93C5FD",
63
+ "rainbow_indigo": "#6366F1",
64
+ "rainbow_indigo_shimmer": "#A5B4FC",
65
+ "rainbow_violet": "#8B5CF6",
66
+ "rainbow_violet_shimmer": "#C4B5FD"
67
+ }
68
+ }
@@ -0,0 +1,9 @@
1
+ # CodeDeck Ultra
2
+
3
+ You are running inside a CodeDeck session. Keep the work attributable, grounded in evidence, and explicit about what actually changed.
4
+
5
+ ## Inviolable rules
6
+
7
+ 1. **Never round failure to success.** An empty diff, a missing artifact, or output that contradicts the claim is not completion. Report the real state.
8
+ 2. **Evidence over assertion.** A claim about runtime behavior needs a command you ran and its output. A claim about code needs a file and a line you opened. When something is a guess, say it is a guess.
9
+ 3. **The scope asked for is the deliverable.** Finish it, and say plainly what you left out and why. Do not silently narrow it, widen it, or trade it for something adjacent.
package/package.json CHANGED
@@ -1,17 +1,18 @@
1
1
  {
2
2
  "name": "codedeck",
3
- "version": "0.1.8",
3
+ "version": "0.2.0",
4
4
  "description": "CodeDeck, a local runtime for coding agents with session management, process supervision, event normalization, and git isolation",
5
5
  "type": "module",
6
6
  "bin": {
7
- "codedeck": "./dist/cli/index.js"
7
+ "codedeck": "dist/cli/index.js"
8
8
  },
9
9
  "files": [
10
10
  "dist",
11
11
  "README.md"
12
12
  ],
13
13
  "scripts": {
14
- "build": "tsc",
14
+ "build": "tsc && npm run build:plugin",
15
+ "build:plugin": "node scripts/copy-plugin.mjs",
15
16
  "dev": "tsc --watch",
16
17
  "start": "node dist/cli/index.js",
17
18
  "test": "vitest run",
@@ -31,14 +32,14 @@
31
32
  "license": "MIT",
32
33
  "repository": {
33
34
  "type": "git",
34
- "url": "https://github.com/4ndreello/run-agent.git"
35
+ "url": "git+https://github.com/4ndreello/run-agent.git"
35
36
  },
36
37
  "homepage": "https://github.com/4ndreello/run-agent#readme",
37
38
  "bugs": {
38
39
  "url": "https://github.com/4ndreello/run-agent/issues"
39
40
  },
40
41
  "engines": {
41
- "node": ">=20.0.0"
42
+ "node": ">=24.0.0"
42
43
  },
43
44
  "dependencies": {
44
45
  "commander": "^12.1.0"