@chosengeneration/light-code 0.2.0 → 0.9.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.
Files changed (32) hide show
  1. package/dist/cli.js +1880 -604
  2. package/dist/client/client.js +36 -33
  3. package/dist/client/guide/appearance-dark.svg +1 -0
  4. package/dist/client/guide/appearance-light.svg +1 -0
  5. package/dist/client/guide/approvals-dark.svg +1 -0
  6. package/dist/client/guide/approvals-light.svg +1 -0
  7. package/dist/client/guide/chat-dark.svg +1 -0
  8. package/dist/client/guide/chat-light.svg +1 -0
  9. package/dist/client/guide/expert-dark.svg +1 -0
  10. package/dist/client/guide/expert-light.svg +1 -0
  11. package/dist/client/guide/mcp-dark.svg +1 -0
  12. package/dist/client/guide/mcp-light.svg +1 -0
  13. package/dist/client/guide/network-dark.svg +1 -0
  14. package/dist/client/guide/network-light.svg +1 -0
  15. package/dist/client/guide/orientation-dark.svg +1 -0
  16. package/dist/client/guide/orientation-light.svg +1 -0
  17. package/dist/client/guide/privacy-dark.svg +1 -0
  18. package/dist/client/guide/privacy-light.svg +1 -0
  19. package/dist/client/guide/providers-dark.svg +1 -0
  20. package/dist/client/guide/providers-light.svg +1 -0
  21. package/dist/client/guide/python-dark.svg +1 -0
  22. package/dist/client/guide/python-light.svg +1 -0
  23. package/dist/client/guide/schedules-dark.svg +1 -0
  24. package/dist/client/guide/schedules-light.svg +1 -0
  25. package/dist/client/guide/search-dark.svg +1 -0
  26. package/dist/client/guide/search-light.svg +1 -0
  27. package/dist/client/guide/skills-dark.svg +1 -0
  28. package/dist/client/guide/skills-light.svg +1 -0
  29. package/dist/client/guide/tools-dark.svg +1 -0
  30. package/dist/client/guide/tools-light.svg +1 -0
  31. package/dist/server.js +1551 -476
  32. package/package.json +65 -63
package/package.json CHANGED
@@ -1,63 +1,65 @@
1
- {
2
- "name": "@chosengeneration/light-code",
3
- "version": "0.2.0",
4
- "description": "A minimal agentic coding assistant, served to your browser from a local Node server",
5
- "license": "MIT",
6
- "type": "module",
7
- "bin": {
8
- "light-code": "dist/cli.js"
9
- },
10
- "files": [
11
- "dist/**/*.js",
12
- "dist/**/*.html",
13
- "dist/**/*.css",
14
- "README.md",
15
- "LICENSE"
16
- ],
17
- "scripts": {
18
- "build": "node ./esbuild.mjs",
19
- "typecheck": "tsc -b tsconfig.json",
20
- "start": "node ./dist/cli.js"
21
- },
22
- "devDependencies": {
23
- "@light-code/core": "workspace:*",
24
- "@light-code/ui": "workspace:*",
25
- "@modelcontextprotocol/sdk": "^1.30.0",
26
- "@types/react": "^19.2.18",
27
- "@types/react-dom": "^19.2.4",
28
- "env-paths": "^4.0.0",
29
- "esbuild": "^0.27.2",
30
- "react": "^19.2.8",
31
- "react-dom": "^19.2.8",
32
- "undici": "^8.10.0",
33
- "zod": "^4.4.3"
34
- },
35
- "keywords": [
36
- "ai",
37
- "agent",
38
- "coding-assistant",
39
- "llm",
40
- "mcp",
41
- "openai",
42
- "anthropic",
43
- "cli"
44
- ],
45
- "homepage": "https://github.com/chosengenerationdev/light-code#readme",
46
- "repository": {
47
- "type": "git",
48
- "url": "git+https://github.com/chosengenerationdev/light-code.git",
49
- "directory": "apps/host"
50
- },
51
- "bugs": {
52
- "url": "https://github.com/chosengenerationdev/light-code/issues"
53
- },
54
- "engines": {
55
- "node": ">=20.0.0"
56
- },
57
- "publishConfig": {
58
- "access": "public"
59
- },
60
- "optionalDependencies": {
61
- "@vscode/ripgrep": "^1.18.0"
62
- }
63
- }
1
+ {
2
+ "name": "@chosengeneration/light-code",
3
+ "version": "0.9.0",
4
+ "description": "A minimal agentic coding assistant, served to your browser from a local Node server",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "light-code": "dist/cli.js"
9
+ },
10
+ "files": [
11
+ "dist/**/*.js",
12
+ "dist/**/*.html",
13
+ "dist/**/*.css",
14
+ "dist/**/*.svg",
15
+ "README.md",
16
+ "LICENSE"
17
+ ],
18
+ "scripts": {
19
+ "build": "node ../../scripts/generate-operator-guide.mjs && node esbuild.mjs",
20
+ "typecheck": "tsc -b tsconfig.json",
21
+ "start": "node ./dist/cli.js",
22
+ "generate:guide": "node ../../scripts/generate-operator-guide.mjs"
23
+ },
24
+ "devDependencies": {
25
+ "@light-code/core": "workspace:*",
26
+ "@light-code/ui": "workspace:*",
27
+ "@modelcontextprotocol/sdk": "^1.30.0",
28
+ "@types/react": "^19.2.18",
29
+ "@types/react-dom": "^19.2.4",
30
+ "env-paths": "^4.0.0",
31
+ "esbuild": "^0.27.2",
32
+ "react": "^19.2.8",
33
+ "react-dom": "^19.2.8",
34
+ "undici": "^8.10.0",
35
+ "zod": "^4.4.3"
36
+ },
37
+ "keywords": [
38
+ "ai",
39
+ "agent",
40
+ "coding-assistant",
41
+ "llm",
42
+ "mcp",
43
+ "openai",
44
+ "anthropic",
45
+ "cli"
46
+ ],
47
+ "homepage": "https://github.com/chosengenerationdev/light-code#readme",
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "git+https://github.com/chosengenerationdev/light-code.git",
51
+ "directory": "apps/host"
52
+ },
53
+ "bugs": {
54
+ "url": "https://github.com/chosengenerationdev/light-code/issues"
55
+ },
56
+ "engines": {
57
+ "node": ">=20.0.0"
58
+ },
59
+ "publishConfig": {
60
+ "access": "public"
61
+ },
62
+ "optionalDependencies": {
63
+ "@vscode/ripgrep": "^1.18.0"
64
+ }
65
+ }