@floh-solutions/pharos-cli 0.31.1 → 0.32.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 +120 -6
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +31 -9
- package/dist/cli.js.map +1 -1
- package/dist/commands/delegate.d.ts +77 -12
- package/dist/commands/delegate.d.ts.map +1 -1
- package/dist/commands/delegate.js +392 -24
- package/dist/commands/delegate.js.map +1 -1
- package/dist/commands/doctor.d.ts.map +1 -1
- package/dist/commands/doctor.js +81 -2
- package/dist/commands/doctor.js.map +1 -1
- package/dist/delegate/argus.d.ts +327 -0
- package/dist/delegate/argus.d.ts.map +1 -0
- package/dist/delegate/argus.js +611 -0
- package/dist/delegate/argus.js.map +1 -0
- package/package.json +3 -3
- package/skill/SKILL.md +16 -5
- package/vscode/pharos-bridge.json +1 -1
- package/vscode/pharos-bridge.vsix +0 -0
package/skill/SKILL.md
CHANGED
|
@@ -119,16 +119,27 @@ bridge map|unmap|digest edit that mapping (--label is an ID, not a name
|
|
|
119
119
|
written back to the work item
|
|
120
120
|
doctor what is installed on THIS machine, what is
|
|
121
121
|
missing, and what each missing thing costs
|
|
122
|
-
delegate hand a prompt to a coding agent in Terminal
|
|
123
|
-
VS Code — Pharos.app's verb, not
|
|
124
|
-
You are on the RECEIVING end:
|
|
125
|
-
prompt begins Fetch Azure DevOps
|
|
122
|
+
delegate hand a prompt to a coding agent in Terminal,
|
|
123
|
+
VS Code or Navarch — Pharos.app's verb, not
|
|
124
|
+
usually yours. You are on the RECEIVING end:
|
|
125
|
+
see "When a prompt begins Fetch Azure DevOps
|
|
126
|
+
work item".
|
|
126
127
|
`--list` names the sessions already on a folder
|
|
127
128
|
(id, name, status, host; `recommended` on the
|
|
128
129
|
one a plain delegate takes) and `--session <id>`
|
|
129
130
|
picks one of them — or `--session new` for a
|
|
130
131
|
fresh one. A pick that has gone answers
|
|
131
|
-
`session-gone` and starts nothing
|
|
132
|
+
`session-gone` and starts nothing.
|
|
133
|
+
`--host navarch` goes over argusd's own socket
|
|
134
|
+
and is the one route that can answer
|
|
135
|
+
`action:"pending"` — a person has to allow the
|
|
136
|
+
hand-off at a card in Navarch. That is a
|
|
137
|
+
SUCCESS, not an error; `--status <request>`
|
|
138
|
+
(the id in `delegation.request`) says what it
|
|
139
|
+
became. Its ids are worker UUIDs, and
|
|
140
|
+
`--session` there refuses
|
|
141
|
+
`session-not-targetable`: the argus op takes a
|
|
142
|
+
folder and a kind, never a worker
|
|
132
143
|
```
|
|
133
144
|
|
|
134
145
|
Text input: `--text` / `--file` / `--stdin`. Global: `--pretty` for a human,
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "floh-solutions.pharos",
|
|
3
3
|
"version": "0.2.1",
|
|
4
4
|
"vsix": "pharos-bridge.vsix",
|
|
5
|
-
"sha256": "
|
|
5
|
+
"sha256": "805e9d398c7717eab4d793c4ce02bb7a2e4076e6af9a420f64ad7817415a4da0",
|
|
6
6
|
"bytes": 23991,
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.94.0"
|
|
Binary file
|