@mmnto/cli 0.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 (57) hide show
  1. package/dist/commands/briefing.d.ts +7 -0
  2. package/dist/commands/briefing.d.ts.map +1 -0
  3. package/dist/commands/briefing.js +134 -0
  4. package/dist/commands/briefing.js.map +1 -0
  5. package/dist/commands/handoff.d.ts +7 -0
  6. package/dist/commands/handoff.d.ts.map +1 -0
  7. package/dist/commands/handoff.js +119 -0
  8. package/dist/commands/handoff.js.map +1 -0
  9. package/dist/commands/init.d.ts +2 -0
  10. package/dist/commands/init.d.ts.map +1 -0
  11. package/dist/commands/init.js +227 -0
  12. package/dist/commands/init.js.map +1 -0
  13. package/dist/commands/install-hooks.d.ts +4 -0
  14. package/dist/commands/install-hooks.d.ts.map +1 -0
  15. package/dist/commands/install-hooks.js +125 -0
  16. package/dist/commands/install-hooks.js.map +1 -0
  17. package/dist/commands/learn.d.ts +14 -0
  18. package/dist/commands/learn.d.ts.map +1 -0
  19. package/dist/commands/learn.js +323 -0
  20. package/dist/commands/learn.js.map +1 -0
  21. package/dist/commands/search.d.ts +5 -0
  22. package/dist/commands/search.d.ts.map +1 -0
  23. package/dist/commands/search.js +31 -0
  24. package/dist/commands/search.js.map +1 -0
  25. package/dist/commands/shield.d.ts +8 -0
  26. package/dist/commands/shield.d.ts.map +1 -0
  27. package/dist/commands/shield.js +130 -0
  28. package/dist/commands/shield.js.map +1 -0
  29. package/dist/commands/spec.d.ts +7 -0
  30. package/dist/commands/spec.d.ts.map +1 -0
  31. package/dist/commands/spec.js +159 -0
  32. package/dist/commands/spec.js.map +1 -0
  33. package/dist/commands/stats.d.ts +2 -0
  34. package/dist/commands/stats.d.ts.map +1 -0
  35. package/dist/commands/stats.js +22 -0
  36. package/dist/commands/stats.js.map +1 -0
  37. package/dist/commands/sync.d.ts +4 -0
  38. package/dist/commands/sync.d.ts.map +1 -0
  39. package/dist/commands/sync.js +16 -0
  40. package/dist/commands/sync.js.map +1 -0
  41. package/dist/commands/triage.d.ts +7 -0
  42. package/dist/commands/triage.d.ts.map +1 -0
  43. package/dist/commands/triage.js +149 -0
  44. package/dist/commands/triage.js.map +1 -0
  45. package/dist/git.d.ts +12 -0
  46. package/dist/git.d.ts.map +1 -0
  47. package/dist/git.js +127 -0
  48. package/dist/git.js.map +1 -0
  49. package/dist/index.d.ts +3 -0
  50. package/dist/index.d.ts.map +1 -0
  51. package/dist/index.js +178 -0
  52. package/dist/index.js.map +1 -0
  53. package/dist/utils.d.ts +48 -0
  54. package/dist/utils.d.ts.map +1 -0
  55. package/dist/utils.js +224 -0
  56. package/dist/utils.js.map +1 -0
  57. package/package.json +51 -0
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@mmnto/cli",
3
+ "version": "0.1.0",
4
+ "description": "CLI for Totem — AI persistent memory and context layer",
5
+ "type": "module",
6
+ "bin": {
7
+ "totem": "./dist/index.js"
8
+ },
9
+ "main": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/index.js",
14
+ "types": "./dist/index.d.ts"
15
+ }
16
+ },
17
+ "scripts": {
18
+ "build": "tsc",
19
+ "dev": "tsc --watch",
20
+ "clean": "rm -rf dist",
21
+ "lint": "eslint src/",
22
+ "test": "echo \"No tests yet\" && exit 0"
23
+ },
24
+ "dependencies": {
25
+ "@mmnto/totem": "workspace:*",
26
+ "commander": "^13.1.0",
27
+ "jiti": "^2.4.0",
28
+ "zod": "^3.24.0"
29
+ },
30
+ "devDependencies": {
31
+ "@types/node": "^22.0.0",
32
+ "typescript": "^5.7.0"
33
+ },
34
+ "files": [
35
+ "dist"
36
+ ],
37
+ "license": "MIT",
38
+ "author": "mmnto-ai",
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "https://github.com/mmnto-ai/totem.git",
42
+ "directory": "packages/cli"
43
+ },
44
+ "homepage": "https://github.com/mmnto-ai/totem",
45
+ "bugs": {
46
+ "url": "https://github.com/mmnto-ai/totem/issues"
47
+ },
48
+ "publishConfig": {
49
+ "access": "public"
50
+ }
51
+ }