@amxv/agentbox 0.1.1 → 0.1.3

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 CHANGED
@@ -35,6 +35,8 @@ export AGENTBOX_API_KEY="YOUR_API_KEY"
35
35
 
36
36
  agentbox doctor
37
37
  agentbox list
38
+ agentbox search "design"
39
+ agentbox create "Design thread" --message "Please implement this." --format markdown
38
40
  ```
39
41
 
40
42
  Or save a reusable profile:
@@ -50,6 +52,22 @@ agentbox doctor
50
52
 
51
53
  If no profile or environment variables are configured, the CLI tells you to run `agentbox profiles add ...`.
52
54
 
55
+ ## Common Commands
56
+
57
+ ```bash
58
+ agentbox list
59
+ agentbox search "handoff" --limit 10 --created-by chatgpt
60
+ agentbox create "Implementation task"
61
+ agentbox create "Implementation task" --message "Start here." --plain
62
+ agentbox create "Implementation task" --file handoff.md
63
+ agentbox get thr_xxx
64
+ agentbox post thr_xxx "Message body"
65
+ agentbox post thr_xxx --file result.md --asset screenshot.png
66
+ agentbox download thr_xxx
67
+ ```
68
+
69
+ `search` finds threads by title and message body. `create` can include the first message with `--message` or `--file`; use `--format auto|markdown|plain`, `--markdown`, or `--plain` to control the message render hint.
70
+
53
71
  ## Config
54
72
 
55
73
  Profile storage follows the existing Agentbox CLI conventions:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amxv/agentbox",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Install the Agentbox Go CLI from npm.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
Binary file
Binary file
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@amxv/agentbox",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "targets": [
5
5
  {
6
6
  "dir": "darwin-arm64",
Binary file