@creativeintelligence/abbie 0.1.7 → 0.1.9

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.
@@ -185,7 +185,7 @@ If already authenticated, shows current status. Use --force to re-authenticate.`
185
185
  this.logInfo("run `abbie sync --apply` manually to sync.");
186
186
  }
187
187
  }
188
- this.logInfo("run `abbie daemon` to start live sync.");
188
+ this.logInfo("run `abbie` to launch the TUI, or visit https://abbie.computer");
189
189
  return {
190
190
  status: "authenticated",
191
191
  clerkId,
@@ -7873,5 +7873,5 @@
7873
7873
  "strict": true
7874
7874
  }
7875
7875
  },
7876
- "version": "0.1.7"
7876
+ "version": "0.1.9"
7877
7877
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creativeintelligence/abbie",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Abbie — agent orchestration CLI",
@@ -42,11 +42,15 @@
42
42
  "dirname": "abbie",
43
43
  "plugins": [
44
44
  "@oclif/plugin-help",
45
- "@oclif/plugin-not-found"
45
+ "@oclif/plugin-not-found",
46
+ "@oclif/plugin-version"
46
47
  ],
47
48
  "additionalHelpFlags": [
48
49
  "-h"
49
50
  ],
51
+ "additionalVersionFlags": [
52
+ "-v"
53
+ ],
50
54
  "topicSeparator": " ",
51
55
  "description": "Agent orchestration CLI",
52
56
  "commands": "./dist/cli/commands",
@@ -54,23 +58,29 @@
54
58
  "session": {
55
59
  "description": "Manage agent sessions"
56
60
  },
57
- "windows": {
58
- "description": "Workspace windows inventory"
59
- },
60
61
  "report": {
61
62
  "description": "Lifecycle reporting"
62
63
  },
63
- "auto": {
64
- "description": "Auto-discover and spawn agents"
64
+ "context": {
65
+ "description": "Session context artifacts"
66
+ },
67
+ "project": {
68
+ "description": "Manage projects"
65
69
  },
66
- "plan": {
67
- "description": "Planning sessions"
70
+ "annotation": {
71
+ "description": "Preview annotations"
68
72
  },
69
73
  "hooks": {
70
- "description": "Agent platform hooks"
74
+ "description": "Agent lifecycle hooks"
71
75
  },
72
76
  "reference": {
73
77
  "description": "Design reference bank"
78
+ },
79
+ "preview": {
80
+ "description": "Preview deployments"
81
+ },
82
+ "auto": {
83
+ "description": "Autonomous agent orchestration"
74
84
  }
75
85
  }
76
86
  },
@@ -90,6 +100,7 @@
90
100
  "@oclif/core": "^4",
91
101
  "@oclif/plugin-help": "^6",
92
102
  "@oclif/plugin-not-found": "^3",
103
+ "@oclif/plugin-version": "^2.2.36",
93
104
  "convex": "^1.31.6",
94
105
  "tar-fs": "^3"
95
106
  },