@lkangd/cc-env 1.1.1 → 1.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.
Files changed (71) hide show
  1. package/LICENSE +15 -0
  2. package/package.json +8 -1
  3. package/.claude/settings.json +0 -6
  4. package/.claude/settings.local.json +0 -8
  5. package/.nvmrc +0 -1
  6. package/CHANGELOG.md +0 -71
  7. package/docs/product-specs/index.draft.md +0 -106
  8. package/docs/product-specs/index.md +0 -911
  9. package/docs/product-specs/optional.md +0 -42
  10. package/docs/references/claude-code-env.md +0 -224
  11. package/docs/superpowers/plans/2026-04-24-cc-env-init-shell-migration.md +0 -1331
  12. package/docs/superpowers/plans/2026-04-24-cc-env.md +0 -1666
  13. package/docs/superpowers/plans/2026-04-26-preset-create-interactive-refactor.md +0 -1432
  14. package/docs/superpowers/specs/2026-04-24-cc-env-design.md +0 -438
  15. package/docs/superpowers/specs/2026-04-24-cc-env-init-shell-migration-design.md +0 -181
  16. package/docs/superpowers/specs/2026-04-26-preset-create-interactive-refactor-design.md +0 -78
  17. package/src/cli.ts +0 -340
  18. package/src/commands/init.ts +0 -139
  19. package/src/commands/preset/create.ts +0 -96
  20. package/src/commands/preset/delete.ts +0 -62
  21. package/src/commands/preset/show.ts +0 -51
  22. package/src/commands/restore.ts +0 -150
  23. package/src/commands/run.ts +0 -158
  24. package/src/core/errors.ts +0 -13
  25. package/src/core/find-claude.ts +0 -70
  26. package/src/core/format.ts +0 -29
  27. package/src/core/fs.ts +0 -18
  28. package/src/core/gitignore.ts +0 -26
  29. package/src/core/logger.ts +0 -11
  30. package/src/core/mask.ts +0 -17
  31. package/src/core/paths.ts +0 -41
  32. package/src/core/process-env.ts +0 -11
  33. package/src/core/schema.ts +0 -55
  34. package/src/core/spawn.ts +0 -36
  35. package/src/flows/init-flow.ts +0 -61
  36. package/src/flows/preset-create-flow.ts +0 -129
  37. package/src/flows/restore-flow.ts +0 -144
  38. package/src/ink/init-app.tsx +0 -110
  39. package/src/ink/preset-create-app.tsx +0 -451
  40. package/src/ink/preset-delete-app.tsx +0 -114
  41. package/src/ink/preset-show-app.tsx +0 -76
  42. package/src/ink/restore-app.tsx +0 -230
  43. package/src/ink/run-preset-select-app.tsx +0 -83
  44. package/src/ink/summary.tsx +0 -91
  45. package/src/services/claude-settings-env-service.ts +0 -72
  46. package/src/services/history-service.ts +0 -48
  47. package/src/services/preset-service.ts +0 -72
  48. package/src/services/project-env-service.ts +0 -128
  49. package/src/services/project-state-service.ts +0 -31
  50. package/src/services/settings-env-service.ts +0 -40
  51. package/src/services/shell-env-service.ts +0 -112
  52. package/src/types.d.ts +0 -19
  53. package/tests/cli/help.test.ts +0 -133
  54. package/tests/cli/init.test.ts +0 -76
  55. package/tests/cli/restore.test.ts +0 -172
  56. package/tests/commands/create.test.ts +0 -263
  57. package/tests/commands/output.test.ts +0 -119
  58. package/tests/commands/run.test.ts +0 -218
  59. package/tests/core/gitignore.test.ts +0 -98
  60. package/tests/core/paths.test.ts +0 -24
  61. package/tests/core/schema-mask.test.ts +0 -182
  62. package/tests/core/spawn.test.ts +0 -47
  63. package/tests/flows/init-flow.test.ts +0 -40
  64. package/tests/flows/preset-create-flow.test.ts +0 -225
  65. package/tests/flows/restore-flow.test.ts +0 -157
  66. package/tests/integration/init-restore.test.ts +0 -406
  67. package/tests/services/claude-shell.test.ts +0 -183
  68. package/tests/services/storage.test.ts +0 -143
  69. package/tsconfig.build.json +0 -9
  70. package/tsconfig.json +0 -22
  71. package/vitest.config.ts +0 -8
@@ -1,225 +0,0 @@
1
- import { describe, expect, it } from 'vitest'
2
-
3
- import {
4
- advancePresetCreateFlow,
5
- createPresetCreateFlowState,
6
- type PresetCreateFlowState,
7
- } from '../../src/flows/preset-create-flow.js'
8
-
9
- describe('preset create flow', () => {
10
- it("starts at step 'source' with empty defaults", () => {
11
- expect(createPresetCreateFlowState()).toEqual({
12
- step: 'source',
13
- env: {},
14
- allKeys: [],
15
- selectedKeys: [],
16
- presetName: '',
17
- })
18
- })
19
-
20
- describe('file path', () => {
21
- function goToFilePath(): PresetCreateFlowState {
22
- return advancePresetCreateFlow(createPresetCreateFlowState(), {
23
- type: 'select-source',
24
- source: 'file',
25
- })
26
- }
27
-
28
- it('source=file advances to filePath', () => {
29
- expect(goToFilePath().step).toBe('filePath')
30
- })
31
-
32
- it('set-file-path advances to keys', () => {
33
- const state = advancePresetCreateFlow(goToFilePath(), {
34
- type: 'set-file-path',
35
- filePath: '/path/to/env.json',
36
- })
37
- expect(state.step).toBe('keys')
38
- expect(state.filePath).toBe('/path/to/env.json')
39
- })
40
-
41
- it('set-error stays on filePath with error message', () => {
42
- const state = advancePresetCreateFlow(goToFilePath(), {
43
- type: 'set-error',
44
- error: 'File not found',
45
- })
46
- expect(state.step).toBe('filePath')
47
- expect(state.error).toBe('File not found')
48
- })
49
- })
50
-
51
- describe('manual input path', () => {
52
- function goToManualInput(): PresetCreateFlowState {
53
- return advancePresetCreateFlow(createPresetCreateFlowState(), {
54
- type: 'select-source',
55
- source: 'manual',
56
- })
57
- }
58
-
59
- it('source=manual advances to manualInput', () => {
60
- expect(goToManualInput().step).toBe('manualInput')
61
- })
62
-
63
- it('add-manual-pair accumulates pairs', () => {
64
- const state = advancePresetCreateFlow(goToManualInput(), {
65
- type: 'add-manual-pair',
66
- key: 'FOO',
67
- value: 'bar',
68
- })
69
- expect(state.env).toEqual({ FOO: 'bar' })
70
- expect(state.selectedKeys).toEqual(['FOO'])
71
- expect(state.step).toBe('manualInput')
72
- })
73
-
74
- it('add-manual-pair overwrites existing key', () => {
75
- const first = advancePresetCreateFlow(goToManualInput(), {
76
- type: 'add-manual-pair',
77
- key: 'FOO',
78
- value: 'bar',
79
- })
80
- const second = advancePresetCreateFlow(first, {
81
- type: 'add-manual-pair',
82
- key: 'FOO',
83
- value: 'updated',
84
- })
85
- expect(second.env.FOO).toBe('updated')
86
- expect(second.selectedKeys).toEqual(['FOO'])
87
- })
88
-
89
- it('set-error on manualInput sets error', () => {
90
- const state = advancePresetCreateFlow(goToManualInput(), {
91
- type: 'set-error',
92
- error: 'Invalid format',
93
- })
94
- expect(state.error).toBe('Invalid format')
95
- })
96
-
97
- it('finish-manual-input advances to name', () => {
98
- const state = advancePresetCreateFlow(goToManualInput(), {
99
- type: 'finish-manual-input',
100
- })
101
- expect(state.step).toBe('name')
102
- })
103
- })
104
-
105
- describe('shared path after source input', () => {
106
- function goToNameViaFile(): PresetCreateFlowState {
107
- const filePath = advancePresetCreateFlow(createPresetCreateFlowState(), {
108
- type: 'select-source',
109
- source: 'file',
110
- })
111
- const keys = advancePresetCreateFlow(filePath, {
112
- type: 'set-file-path',
113
- filePath: '/env.json',
114
- })
115
- return advancePresetCreateFlow(keys, {
116
- type: 'select-keys',
117
- keys: ['API_KEY'],
118
- env: { API_KEY: 'secret' },
119
- })
120
- }
121
-
122
- function goToNameViaManual(): PresetCreateFlowState {
123
- const manual = advancePresetCreateFlow(createPresetCreateFlowState(), {
124
- type: 'select-source',
125
- source: 'manual',
126
- })
127
- return advancePresetCreateFlow(manual, {
128
- type: 'finish-manual-input',
129
- })
130
- }
131
-
132
- it('set-name advances to destination', () => {
133
- const state = advancePresetCreateFlow(goToNameViaFile(), {
134
- type: 'set-name',
135
- name: 'my-preset',
136
- })
137
- expect(state.step).toBe('destination')
138
- expect(state.presetName).toBe('my-preset')
139
- })
140
-
141
- it('select-destination advances to confirm', () => {
142
- const name = advancePresetCreateFlow(goToNameViaFile(), {
143
- type: 'set-name',
144
- name: 'my-preset',
145
- })
146
- const dest = advancePresetCreateFlow(name, {
147
- type: 'select-destination',
148
- destination: 'global',
149
- })
150
- expect(dest.step).toBe('confirm')
151
- expect(dest.destination).toBe('global')
152
- })
153
-
154
- it('confirm advances to done', () => {
155
- const name = advancePresetCreateFlow(goToNameViaFile(), {
156
- type: 'set-name',
157
- name: 'my-preset',
158
- })
159
- const dest = advancePresetCreateFlow(name, {
160
- type: 'select-destination',
161
- destination: 'project',
162
- })
163
- const done = advancePresetCreateFlow(dest, { type: 'confirm' })
164
- expect(done.step).toBe('done')
165
- })
166
-
167
- it('manual path reaches done through name→destination→confirm', () => {
168
- const name = advancePresetCreateFlow(goToNameViaManual(), {
169
- type: 'set-name',
170
- name: 'manual-preset',
171
- })
172
- const dest = advancePresetCreateFlow(name, {
173
- type: 'select-destination',
174
- destination: 'global',
175
- })
176
- const done = advancePresetCreateFlow(dest, { type: 'confirm' })
177
- expect(done.step).toBe('done')
178
- expect(done.presetName).toBe('manual-preset')
179
- })
180
- })
181
-
182
- it('ignores invalid transitions without mutating state', () => {
183
- const state = createPresetCreateFlowState()
184
-
185
- expect(
186
- advancePresetCreateFlow(state, {
187
- type: 'select-keys',
188
- keys: ['FOO'],
189
- env: { FOO: 'bar' },
190
- }),
191
- ).toEqual(state)
192
-
193
- expect(
194
- advancePresetCreateFlow(state, {
195
- type: 'confirm',
196
- }),
197
- ).toEqual(state)
198
- })
199
-
200
- it('ignores changes after the flow is done', () => {
201
- const source = advancePresetCreateFlow(createPresetCreateFlowState(), {
202
- type: 'select-source',
203
- source: 'manual',
204
- })
205
- const name = advancePresetCreateFlow(source, {
206
- type: 'finish-manual-input',
207
- })
208
- const dest = advancePresetCreateFlow(name, {
209
- type: 'set-name',
210
- name: 'test',
211
- })
212
- const confirm = advancePresetCreateFlow(dest, {
213
- type: 'select-destination',
214
- destination: 'global',
215
- })
216
- const done = advancePresetCreateFlow(confirm, { type: 'confirm' })
217
-
218
- expect(
219
- advancePresetCreateFlow(done, {
220
- type: 'select-source',
221
- source: 'file',
222
- }),
223
- ).toEqual(done)
224
- })
225
- })
@@ -1,157 +0,0 @@
1
- import { describe, expect, it } from 'vitest'
2
-
3
- import {
4
- advanceRestoreFlow,
5
- createRestoreFlowState,
6
- } from '../../src/flows/restore-flow.js'
7
-
8
- const initRecord = {
9
- timestamp: '2026-04-24T00:00:00.000Z',
10
- action: 'init' as const,
11
- migratedKeys: ['ANTHROPIC_AUTH_TOKEN'],
12
- sources: [
13
- {
14
- file: '/Users/test/.claude/settings.json',
15
- backup: {},
16
- },
17
- {
18
- file: '/Users/test/.claude/settings.local.json',
19
- backup: {
20
- ANTHROPIC_AUTH_TOKEN: 'local-token',
21
- },
22
- },
23
- ],
24
- shellWrites: [
25
- {
26
- shell: 'zsh' as const,
27
- filePath: '/Users/test/.zshrc',
28
- env: {
29
- ANTHROPIC_AUTH_TOKEN: 'local-token',
30
- },
31
- },
32
- ],
33
- }
34
-
35
- const restoreRecord = {
36
- timestamp: '2026-04-25T00:00:00.000Z',
37
- action: 'restore' as const,
38
- targetType: 'preset' as const,
39
- targetName: 'openai',
40
- backup: {
41
- OPENAI_API_KEY: 'sk-123',
42
- },
43
- }
44
-
45
- function createConfirmState() {
46
- const recordState = createRestoreFlowState([restoreRecord])
47
- const targetState = advanceRestoreFlow(recordState, {
48
- type: 'select-record',
49
- timestamp: restoreRecord.timestamp,
50
- })
51
-
52
- return advanceRestoreFlow(targetState, {
53
- type: 'select-target',
54
- targetType: 'preset',
55
- targetName: restoreRecord.targetName,
56
- })
57
- }
58
-
59
- describe('restore flow', () => {
60
- it('starts on the record step', () => {
61
- expect(createRestoreFlowState([restoreRecord])).toEqual({
62
- step: 'record',
63
- records: [restoreRecord],
64
- })
65
- })
66
-
67
- it('skips target selection for init history entries', () => {
68
- const state = createRestoreFlowState([initRecord])
69
-
70
- expect(
71
- advanceRestoreFlow(state, {
72
- type: 'select-record',
73
- timestamp: initRecord.timestamp,
74
- }),
75
- ).toEqual({
76
- step: 'confirm',
77
- records: [initRecord],
78
- selectedTimestamp: initRecord.timestamp,
79
- })
80
- })
81
-
82
- it('moves from record to target for restore history entries', () => {
83
- const state = createRestoreFlowState([restoreRecord])
84
-
85
- expect(
86
- advanceRestoreFlow(state, {
87
- type: 'select-record',
88
- timestamp: restoreRecord.timestamp,
89
- }),
90
- ).toEqual({
91
- step: 'target',
92
- records: [restoreRecord],
93
- selectedTimestamp: restoreRecord.timestamp,
94
- })
95
- })
96
-
97
- it('keeps the record step unchanged when selecting an unknown timestamp', () => {
98
- const state = createRestoreFlowState([restoreRecord])
99
-
100
- expect(
101
- advanceRestoreFlow(state, {
102
- type: 'select-record',
103
- timestamp: '2026-04-26T00:00:00.000Z',
104
- }),
105
- ).toEqual(state)
106
- })
107
-
108
- it('moves through target, confirm, and done after selecting a restore record', () => {
109
- const confirmState = createConfirmState()
110
-
111
- expect(confirmState).toEqual({
112
- step: 'confirm',
113
- records: [restoreRecord],
114
- selectedTimestamp: restoreRecord.timestamp,
115
- targetType: 'preset',
116
- targetName: restoreRecord.targetName,
117
- })
118
- expect(advanceRestoreFlow(confirmState, { type: 'confirm' })).toEqual({
119
- step: 'done',
120
- records: [restoreRecord],
121
- selectedTimestamp: restoreRecord.timestamp,
122
- targetType: 'preset',
123
- targetName: restoreRecord.targetName,
124
- })
125
- })
126
-
127
- it('finishes an init restore after confirm', () => {
128
- const confirmState = advanceRestoreFlow(createRestoreFlowState([initRecord]), {
129
- type: 'select-record',
130
- timestamp: initRecord.timestamp,
131
- })
132
-
133
- expect(advanceRestoreFlow(confirmState, { type: 'confirm' })).toEqual({
134
- step: 'done',
135
- records: [initRecord],
136
- selectedTimestamp: initRecord.timestamp,
137
- })
138
- })
139
-
140
- it('keeps the done step unchanged for any later action', () => {
141
- const doneState = advanceRestoreFlow(createConfirmState(), { type: 'confirm' })
142
-
143
- expect(
144
- advanceRestoreFlow(doneState, {
145
- type: 'select-record',
146
- timestamp: restoreRecord.timestamp,
147
- }),
148
- ).toEqual(doneState)
149
- expect(
150
- advanceRestoreFlow(doneState, {
151
- type: 'select-target',
152
- targetType: 'settings',
153
- }),
154
- ).toEqual(doneState)
155
- expect(advanceRestoreFlow(doneState, { type: 'confirm' })).toEqual(doneState)
156
- })
157
- })