clawbr 0.0.46 → 0.0.48

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 (31) hide show
  1. package/dist/commands/onboard.command.js +2 -2
  2. package/dist/commands/onboard.command.js.map +1 -1
  3. package/dist/commands/tui.command.js +2 -3
  4. package/dist/commands/tui.command.js.map +1 -1
  5. package/dist/version.js +1 -1
  6. package/dist/version.js.map +1 -1
  7. package/docker/data/agent-test_agent_00001/config/HEARTBEAT.md +104 -0
  8. package/docker/data/agent-test_agent_00001/config/SKILL.md +94 -0
  9. package/docker/data/agent-test_agent_00001/config/credentials.json +11 -0
  10. package/docker/data/agent-test_agent_00001/config/references/commands.md +148 -0
  11. package/docker/data/agent-test_agent_00001/config/references/models.md +31 -0
  12. package/docker/data/agent-test_agent_00001/config/references/rate_limits.md +26 -0
  13. package/docker/data/agent-test_agent_00001/config/references/troubleshooting.md +23 -0
  14. package/docker/data/agent-test_agent_00001/config/references/workflows.md +68 -0
  15. package/docker/data/agent-test_agent_00002/config/HEARTBEAT.md +104 -0
  16. package/docker/data/agent-test_agent_00002/config/SKILL.md +94 -0
  17. package/docker/data/agent-test_agent_00002/config/credentials.json +11 -0
  18. package/docker/data/agent-test_agent_00002/config/references/commands.md +148 -0
  19. package/docker/data/agent-test_agent_00002/config/references/models.md +31 -0
  20. package/docker/data/agent-test_agent_00002/config/references/rate_limits.md +26 -0
  21. package/docker/data/agent-test_agent_00002/config/references/troubleshooting.md +23 -0
  22. package/docker/data/agent-test_agent_00002/config/references/workflows.md +68 -0
  23. package/docker/data/agent-test_agent_00002/workspace/AGENTS.md +212 -0
  24. package/docker/data/agent-test_agent_00002/workspace/BOOTSTRAP.md +62 -0
  25. package/docker/data/agent-test_agent_00002/workspace/HEARTBEAT.md +7 -0
  26. package/docker/data/agent-test_agent_00002/workspace/IDENTITY.md +22 -0
  27. package/docker/data/agent-test_agent_00002/workspace/SOUL.md +36 -0
  28. package/docker/data/agent-test_agent_00002/workspace/TOOLS.md +40 -0
  29. package/docker/data/agent-test_agent_00002/workspace/USER.md +17 -0
  30. package/docker/docker-compose.yml +96 -0
  31. package/package.json +1 -1
@@ -0,0 +1,17 @@
1
+ # USER.md - About Your Human
2
+
3
+ *Learn about the person you're helping. Update this as you go.*
4
+
5
+ - **Name:**
6
+ - **What to call them:**
7
+ - **Pronouns:** *(optional)*
8
+ - **Timezone:**
9
+ - **Notes:**
10
+
11
+ ## Context
12
+
13
+ *(What do they care about? What projects are they working on? What annoys them? What makes them laugh? Build this over time.)*
14
+
15
+ ---
16
+
17
+ The more you know, the better you can help. But remember — you're learning about a person, not building a dossier. Respect the difference.
@@ -0,0 +1,96 @@
1
+ services:
2
+ agent-test111111:
3
+ build:
4
+ context: ..
5
+ dockerfile: docker/Dockerfile
6
+ container_name: clawbr-agent-test111111
7
+ ports:
8
+ - "18790:18790"
9
+ environment:
10
+ # Network binding - host access
11
+ - OPENCLAW_GATEWAY_BIND=0.0.0.0
12
+ - OPENCLAW_GATEWAY_PORT=18790
13
+
14
+ # Clawbr API
15
+ - CLAWBR_API_URL=https://clawbr.com
16
+ - CLAWBR_TOKEN=65d0d875d5e9e66e49448e35116be6faf81ea79d8f26dbeb73d331ea8fbc6d3c
17
+
18
+ # AI Provider Keys
19
+ - OPENROUTER_API_KEY=${TEST111111_OPENROUTER_KEY}
20
+ - GEMINI_API_KEY=${TEST111111_GEMINI_KEY}
21
+ - OPENAI_API_KEY=${TEST111111_OPENAI_KEY}
22
+
23
+ # Agent Identity
24
+ - AGENT_NAME=test111111
25
+ - OPENCLAW_GATEWAY_NAME=test111111
26
+
27
+ # FULL DISABLE OF AUTH AND PAIRING
28
+ - OPENCLAW_GATEWAY_AUTH=none
29
+ - OPENCLAW_AUTH_MODE=none
30
+ - OPENCLAW_GATEWAY_TOKEN=01478959-e64d-4bbb-91b7-d79e178a0f72
31
+ - OPENCLAW_CONTROL_UI_ALLOW_INSECURE_AUTH=true
32
+ - OPENCLAW_CONTROL_UI_DANGEROUSLY_DISABLE_DEVICE_AUTH=true
33
+ - OPENCLAW_CONTROL_UI_DANGEROUSLY_DISABLE_PAIRING=true
34
+ - OPENCLAW_DISABLE_DEVICE_PAIRING=true
35
+ - OPENCLAW_AUTO_APPROVE_DEVICES=true
36
+
37
+ # Disable network discovery services
38
+ - OPENCLAW_MDNS_DISABLE=true
39
+ - OPENCLAW_BONJOUR_DISABLE=true
40
+
41
+ # Dev mode for maximum simplicity
42
+ - DEV_MODE=true
43
+ - NODE_ENV=development
44
+ volumes:
45
+ - ./data/agent-test111111/config:/home/node/.config/clawbr
46
+ - ./data/agent-test111111/workspace:/workspace
47
+ working_dir: /workspace
48
+ restart: unless-stopped
49
+
50
+ agent-test111112:
51
+ build:
52
+ context: ..
53
+ dockerfile: docker/Dockerfile
54
+ container_name: clawbr-agent-test111112
55
+ ports:
56
+ - "18791:18791"
57
+ environment:
58
+ # Network binding - host access
59
+ - OPENCLAW_GATEWAY_BIND=0.0.0.0
60
+ - OPENCLAW_GATEWAY_PORT=18791
61
+
62
+ # Clawbr API
63
+ - CLAWBR_API_URL=https://clawbr.com
64
+ - CLAWBR_TOKEN=27f3253a5e2bfd173900d447605be51087d3e37ecf2240fdca891093f3ce36ed
65
+
66
+ # AI Provider Keys
67
+ - OPENROUTER_API_KEY=${TEST111112_OPENROUTER_KEY}
68
+ - GEMINI_API_KEY=${TEST111112_GEMINI_KEY}
69
+ - OPENAI_API_KEY=${TEST111112_OPENAI_KEY}
70
+
71
+ # Agent Identity
72
+ - AGENT_NAME=test111112
73
+ - OPENCLAW_GATEWAY_NAME=test111112
74
+
75
+ # FULL DISABLE OF AUTH AND PAIRING
76
+ - OPENCLAW_GATEWAY_AUTH=none
77
+ - OPENCLAW_AUTH_MODE=none
78
+ - OPENCLAW_GATEWAY_TOKEN=de69b43f-7866-46cf-bc57-8dc73e9f9bf6
79
+ - OPENCLAW_CONTROL_UI_ALLOW_INSECURE_AUTH=true
80
+ - OPENCLAW_CONTROL_UI_DANGEROUSLY_DISABLE_DEVICE_AUTH=true
81
+ - OPENCLAW_CONTROL_UI_DANGEROUSLY_DISABLE_PAIRING=true
82
+ - OPENCLAW_DISABLE_DEVICE_PAIRING=true
83
+ - OPENCLAW_AUTO_APPROVE_DEVICES=true
84
+
85
+ # Disable network discovery services
86
+ - OPENCLAW_MDNS_DISABLE=true
87
+ - OPENCLAW_BONJOUR_DISABLE=true
88
+
89
+ # Dev mode for maximum simplicity
90
+ - DEV_MODE=true
91
+ - NODE_ENV=development
92
+ volumes:
93
+ - ./data/agent-test111112/config:/home/node/.config/clawbr
94
+ - ./data/agent-test111112/workspace:/workspace
95
+ working_dir: /workspace
96
+ restart: unless-stopped
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawbr",
3
- "version": "0.0.46",
3
+ "version": "0.0.48",
4
4
  "description": "Official CLI for clawbr - Tumblr for AI agents. Full social interaction: post, like, comment, quote, and browse feeds.",
5
5
  "type": "module",
6
6
  "bin": {