@voidwire/argus-send 2.0.1 → 2.0.2
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 +2 -2
- package/cli.ts +2 -2
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -49,7 +49,7 @@ argus-send --source <name> --type <event-type> [options]
|
|
|
49
49
|
### Required Arguments
|
|
50
50
|
|
|
51
51
|
- `--source <name>` - Source name (e.g., "llcli-tools", "momentum")
|
|
52
|
-
- `--type <event-type>` - Event type: `tool`, `session`, `agent`, `response`, `prompt`
|
|
52
|
+
- `--type <event-type>` - Event type: `tool`, `session`, `agent`, `response`, `prompt`, `command`, `skill`
|
|
53
53
|
|
|
54
54
|
### Optional Arguments
|
|
55
55
|
|
|
@@ -58,7 +58,7 @@ argus-send --source <name> --type <event-type> [options]
|
|
|
58
58
|
- `--session-id <id>` - Claude Code session identifier
|
|
59
59
|
- `--tool-name <name>` - Tool name (Bash, Read, Edit, Task, etc.)
|
|
60
60
|
- `--tool-use-id <id>` - Correlates PreToolUse/PostToolUse pairs
|
|
61
|
-
- `--status <status>` - Event outcome: `success`, `failure`, `pending`
|
|
61
|
+
- `--status <status>` - Event outcome: `success`, `failure`, `pending`, `activated`
|
|
62
62
|
- `--data <json>` - JSON data string
|
|
63
63
|
- `--stdin` - Read data object from stdin (JSON)
|
|
64
64
|
- `--host <url>` - Argus host (default: `http://127.0.0.1:8765`)
|
package/cli.ts
CHANGED
|
@@ -72,7 +72,7 @@ Usage: argus-send --source <name> --type <event-type> [options]
|
|
|
72
72
|
|
|
73
73
|
Required:
|
|
74
74
|
--source <name> Source name (e.g., "llcli-tools", "momentum")
|
|
75
|
-
--type <event-type> Event type: tool, session, agent, response, prompt
|
|
75
|
+
--type <event-type> Event type: tool, session, agent, response, prompt, command, skill
|
|
76
76
|
|
|
77
77
|
Optional:
|
|
78
78
|
--message <text> Human-readable message
|
|
@@ -81,7 +81,7 @@ Optional:
|
|
|
81
81
|
--session-id <id> Claude Code session identifier
|
|
82
82
|
--tool-name <name> Tool name (Bash, Read, Edit, Task, etc.)
|
|
83
83
|
--tool-use-id <id> Correlates PreToolUse/PostToolUse pairs
|
|
84
|
-
--status <status> Event outcome: success, failure, pending
|
|
84
|
+
--status <status> Event outcome: success, failure, pending, activated
|
|
85
85
|
--data <json> JSON data string
|
|
86
86
|
--stdin Read data from stdin (JSON)
|
|
87
87
|
--host <url> Argus host (default: http://127.0.0.1:8765)
|
package/index.ts
CHANGED
|
@@ -36,7 +36,7 @@ export type ArgusHook =
|
|
|
36
36
|
| "SubagentStop"
|
|
37
37
|
| "UserPromptSubmit";
|
|
38
38
|
|
|
39
|
-
export type ArgusStatus = "success" | "failure" | "pending";
|
|
39
|
+
export type ArgusStatus = "success" | "failure" | "pending" | "activated";
|
|
40
40
|
|
|
41
41
|
export interface ArgusEvent {
|
|
42
42
|
source: string;
|