orboto 0.173.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.
- package/README.md +62 -0
- package/bin/orboto.mjs +26 -0
- package/dist/DOCS-WIKI.md +52 -0
- package/dist/REFERENCE.md +149 -0
- package/dist/SKILL.md +476 -0
- package/dist/orboto.mjs +5766 -0
- package/package.json +34 -0
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "orboto",
|
|
3
|
+
"version": "0.173.0",
|
|
4
|
+
"description": "orboto agent CLI - drive the orboto ticket & project platform from any shell or AI agent harness. Zero dependencies.",
|
|
5
|
+
"license": "SEE LICENSE IN README.md",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"orboto": "bin/orboto.mjs"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin/",
|
|
12
|
+
"dist/",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"prepack": "node prepack.mjs"
|
|
17
|
+
},
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=20"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"orboto",
|
|
23
|
+
"cli",
|
|
24
|
+
"tickets",
|
|
25
|
+
"project-management",
|
|
26
|
+
"ai-agent",
|
|
27
|
+
"agent-tools"
|
|
28
|
+
],
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/orboto/orboto.git",
|
|
32
|
+
"directory": "packages/cli"
|
|
33
|
+
}
|
|
34
|
+
}
|