@workser/cli 0.6.12 → 0.6.13
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/AGENTS.md +7 -0
- package/dist/index.js +282 -206
- package/package.json +1 -1
- package/skills/workser/SKILL.md +14 -12
package/AGENTS.md
CHANGED
|
@@ -86,6 +86,8 @@ workser memory add "<content>" [--metadata <json>] # remember something across
|
|
|
86
86
|
workser memory search "<query>" [--limit N] # recall what you (or a cloud agent) learned before
|
|
87
87
|
workser memory forget <memoryId> # soft-delete an outdated/incorrect memory
|
|
88
88
|
|
|
89
|
+
workser note "<one sentence>" # a fact the rest of the team will need
|
|
90
|
+
|
|
89
91
|
workser artifact add <path> [--kind <k>] [-d <text>] # record a finished deliverable
|
|
90
92
|
workser artifact add --url <url> --kind app # record a deployed app
|
|
91
93
|
workser artifact run # which task you're attached to
|
|
@@ -113,6 +115,11 @@ workser task start [id] # starts only an already-app
|
|
|
113
115
|
|
|
114
116
|
# owner-only (will return owner_only / exit 6 — ask the user to do these in Orbit):
|
|
115
117
|
# project create, project use, env rm, domain set
|
|
118
|
+
|
|
119
|
+
# out_of_scope / exit 7 — this shell works inside ONE organization: the one its
|
|
120
|
+
# folder (or the project open in Workser) belongs to. You may move between that
|
|
121
|
+
# org's projects with `--project <id>` or by `cd`. Another organization is
|
|
122
|
+
# refused and nothing runs. `project list` shows your org's projects only.
|
|
116
123
|
```
|
|
117
124
|
|
|
118
125
|
## Project tracking (the Board, Docs and Memory the user sees in Orbit)
|