@lkangd/cc-env 1.0.0 → 1.1.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.
@@ -1,3 +1,8 @@
1
1
  {
2
- "env": {}
2
+ "env": {},
3
+ "permissions": {
4
+ "allow": [
5
+ "Bash(python3 *)"
6
+ ]
7
+ }
3
8
  }
package/CHANGELOG.md ADDED
@@ -0,0 +1,66 @@
1
+ # Changelog
2
+
3
+ ## 1.1.0 (2026-04-27)
4
+
5
+ ### Features
6
+ * add CLI descriptions and improve error formatting
7
+ * add env source and merge services
8
+ * add env validation and masking helpers
9
+ * add gradient ASCII art banner to CLI startup
10
+ * add initial project structure with .gitignore, package.json, and documentation
11
+ * add interactive preset creation flow
12
+ * add interactive preset delete with confirmation flow
13
+ * add interactive preset list UI with project/global source display
14
+ * add non-interactive preset creation
15
+ * add output and preset inspection commands
16
+ * add preset and history storage services
17
+ * add restore flow and command
18
+ * add runtime execution and dry-run
19
+ * add settings migration flow
20
+ * add shebang to CLI entry point
21
+ * auto-add .cc-env to .gitignore on project preset create and remove config service
22
+ * complete cc-env v1 command wiring
23
+ * migrate Claude env into managed shell blocks
24
+ * redesign run command as Claude launcher with interactive preset selection
25
+ * scope package as @lkangd/cc-env for public npm publish
26
+ * support project-level Claude settings in init and restore
27
+
28
+ ### Bug Fixes
29
+ * align preset create step progression
30
+ * complete interactive init and restore flows
31
+ * harden interactive preset create flow
32
+ * harden project env first-write handling
33
+ * harden restore flow selection
34
+ * harden run command validation and preview
35
+ * harden storage writes and preset deletion
36
+ * normalize preset create input errors
37
+ * resolve TypeScript exactOptionalPropertyTypes errors in preset create
38
+ * simplify interactive preset create flow
39
+ * support top-level run flags
40
+ * wire preset management commands and outputs
41
+
42
+ ### Code Refactoring
43
+ * align persisted history records with schema
44
+ * extract shared EnvSummary component and replace stdout writes with ink rendering
45
+ * merge preset list and show into single interactive show command
46
+ * remove debug command and runtime env service
47
+ * remove preset edit command and add .cc-env/ to gitignore
48
+ * remove proper-lockfile in favor of atomic writes
49
+ * reorder merge params to match priority and use ink in debug
50
+ * rewrite preset-create-app with full interactive wizard UI
51
+ * rewrite preset-create-flow state machine for full interactive wizard
52
+ * simplify preset create command to thin renderFlow wrapper
53
+ * use sources array in history schema and improve interactive UI
54
+
55
+ ### Documentation
56
+ * add preset create interactive refactor design spec
57
+ * add preset create interactive refactor implementation plan
58
+
59
+ ### Other Changes
60
+ * merge: integrate Claude shell env migration
61
+ * fix restore typing against persisted history schema
62
+ * fix signal exits and history record validation
63
+ * fix restore flow state invariants and CLI wiring
64
+ * fix interactive preset create flow wiring
65
+ * fix schema timestamp validation and secret masking
66
+ * fix package dependency versions for task 1 compliance
package/dist/cli.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import React from 'react';
2
3
  import { render } from 'ink';
3
4
  import { join } from 'node:path';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lkangd/cc-env",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/lkangd/cc-env#readme",
6
6
  "bugs": {
package/src/cli.ts CHANGED
@@ -1,3 +1,5 @@
1
+ #!/usr/bin/env node
2
+
1
3
  import React from 'react'
2
4
  import { render } from 'ink'
3
5
  import { join } from 'node:path'