@zenera/cli 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.
Files changed (78) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +239 -0
  3. package/dist/args.d.ts +40 -0
  4. package/dist/args.js +99 -0
  5. package/dist/audit.d.ts +53 -0
  6. package/dist/audit.js +144 -0
  7. package/dist/banner.d.ts +13 -0
  8. package/dist/banner.js +103 -0
  9. package/dist/command.d.ts +14 -0
  10. package/dist/command.js +12 -0
  11. package/dist/commands/check.d.ts +3 -0
  12. package/dist/commands/check.js +287 -0
  13. package/dist/commands/index.d.ts +22 -0
  14. package/dist/commands/index.js +56 -0
  15. package/dist/commands/init.d.ts +3 -0
  16. package/dist/commands/init.js +157 -0
  17. package/dist/commands/inspect.d.ts +3 -0
  18. package/dist/commands/inspect.js +158 -0
  19. package/dist/commands/key.d.ts +3 -0
  20. package/dist/commands/key.js +335 -0
  21. package/dist/commands/list.d.ts +3 -0
  22. package/dist/commands/list.js +101 -0
  23. package/dist/commands/models.d.ts +9 -0
  24. package/dist/commands/models.js +120 -0
  25. package/dist/commands/open.d.ts +9 -0
  26. package/dist/commands/open.js +270 -0
  27. package/dist/commands/run.d.ts +3 -0
  28. package/dist/commands/run.js +167 -0
  29. package/dist/commands/sandbox.d.ts +3 -0
  30. package/dist/commands/sandbox.js +112 -0
  31. package/dist/commands/version.d.ts +6 -0
  32. package/dist/commands/version.js +39 -0
  33. package/dist/engine.d.ts +49 -0
  34. package/dist/engine.js +208 -0
  35. package/dist/external.d.ts +10 -0
  36. package/dist/external.js +56 -0
  37. package/dist/home.d.ts +31 -0
  38. package/dist/home.js +108 -0
  39. package/dist/ids.d.ts +12 -0
  40. package/dist/ids.js +44 -0
  41. package/dist/keys.d.ts +124 -0
  42. package/dist/keys.js +309 -0
  43. package/dist/lib.d.ts +9 -0
  44. package/dist/lib.js +31 -0
  45. package/dist/liveness.d.ts +23 -0
  46. package/dist/liveness.js +221 -0
  47. package/dist/main.d.ts +3 -0
  48. package/dist/main.js +155 -0
  49. package/dist/narrate.d.ts +19 -0
  50. package/dist/narrate.js +124 -0
  51. package/dist/podman.d.ts +46 -0
  52. package/dist/podman.js +254 -0
  53. package/dist/projects.d.ts +70 -0
  54. package/dist/projects.js +232 -0
  55. package/dist/resolve.d.ts +27 -0
  56. package/dist/resolve.js +138 -0
  57. package/dist/sandbox.d.ts +36 -0
  58. package/dist/sandbox.js +104 -0
  59. package/dist/scaffold.d.ts +29 -0
  60. package/dist/scaffold.js +220 -0
  61. package/dist/session.d.ts +77 -0
  62. package/dist/session.js +156 -0
  63. package/dist/term.d.ts +69 -0
  64. package/dist/term.js +242 -0
  65. package/dist/tui/app.d.ts +8 -0
  66. package/dist/tui/app.js +257 -0
  67. package/dist/tui/theme.d.ts +23 -0
  68. package/dist/tui/theme.js +134 -0
  69. package/dist/tui/wrap.d.ts +12 -0
  70. package/dist/tui/wrap.js +62 -0
  71. package/dist/validate.d.ts +145 -0
  72. package/dist/validate.js +959 -0
  73. package/package.json +76 -0
  74. package/templates/.github/copilot-instructions.md +1579 -0
  75. package/templates/.github/prompts/new-agent.prompt.md +38 -0
  76. package/templates/.github/prompts/new-skill.prompt.md +37 -0
  77. package/templates/.github/prompts/review-project.prompt.md +31 -0
  78. package/templates/.github/skills/zen-cli/SKILL.md +110 -0
package/package.json ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "name": "@zenera/cli",
3
+ "version": "1.1.0",
4
+ "description": "Command-line front end for @zenera/neo: agentic projects you can run, share and commit.",
5
+ "keywords": [
6
+ "agents",
7
+ "ai-agents",
8
+ "cli",
9
+ "llm",
10
+ "agent-runtime",
11
+ "tui"
12
+ ],
13
+ "license": "MIT",
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "author": "Andrey Ryabov",
18
+ "homepage": "https://github.com/andreyryabov/ZeneraNeo#readme",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/andreyryabov/ZeneraNeo.git",
22
+ "directory": "packages/cli"
23
+ },
24
+ "bugs": "https://github.com/andreyryabov/ZeneraNeo/issues",
25
+ "type": "module",
26
+ "bin": {
27
+ "zen": "./dist/main.js",
28
+ "zn": "./dist/main.js",
29
+ "zenera": "./dist/main.js"
30
+ },
31
+ "exports": {
32
+ "./lib": {
33
+ "types": "./dist/lib.d.ts",
34
+ "default": "./dist/lib.js"
35
+ }
36
+ },
37
+ "files": [
38
+ "dist",
39
+ "!dist/**/*.map",
40
+ "templates"
41
+ ],
42
+ "engines": {
43
+ "node": ">=24"
44
+ },
45
+ "scripts": {
46
+ "build": "tsc -b",
47
+ "clean": "tsc -b --clean && rm -rf dist",
48
+ "prepack": "tsc -b"
49
+ },
50
+ "dependencies": {
51
+ "@inkjs/ui": "^2.0.0",
52
+ "ink": "^7.1.1",
53
+ "react": "^19.2.8",
54
+ "@zenera/neo": "^1.1.0"
55
+ },
56
+ "peerDependencies": {
57
+ "@anthropic-ai/sdk": "^0.120.0",
58
+ "@google/genai": "^2.18.0",
59
+ "@openrouter/sdk": "^1.2.80",
60
+ "openai": "^6.0.0"
61
+ },
62
+ "peerDependenciesMeta": {
63
+ "@anthropic-ai/sdk": {
64
+ "optional": true
65
+ },
66
+ "@google/genai": {
67
+ "optional": true
68
+ },
69
+ "@openrouter/sdk": {
70
+ "optional": true
71
+ },
72
+ "openai": {
73
+ "optional": true
74
+ }
75
+ }
76
+ }