@creativeintelligence/abbie 0.1.7 → 0.1.8
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.
- package/oclif.manifest.json +1 -1
- package/package.json +21 -10
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@creativeintelligence/abbie",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
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
|
-
"
|
|
64
|
-
"description": "
|
|
64
|
+
"context": {
|
|
65
|
+
"description": "Session context artifacts"
|
|
66
|
+
},
|
|
67
|
+
"project": {
|
|
68
|
+
"description": "Manage projects"
|
|
65
69
|
},
|
|
66
|
-
"
|
|
67
|
-
"description": "
|
|
70
|
+
"annotation": {
|
|
71
|
+
"description": "Preview annotations"
|
|
68
72
|
},
|
|
69
73
|
"hooks": {
|
|
70
|
-
"description": "Agent
|
|
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
|
},
|