@voidwire/argus-send 2.0.0 → 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 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
@@ -22,7 +22,9 @@ export type ArgusEventType =
22
22
  | "session"
23
23
  | "agent"
24
24
  | "response"
25
- | "prompt";
25
+ | "prompt"
26
+ | "command"
27
+ | "skill";
26
28
 
27
29
  export type ArgusHook =
28
30
  | "PreToolUse"
@@ -34,7 +36,7 @@ export type ArgusHook =
34
36
  | "SubagentStop"
35
37
  | "UserPromptSubmit";
36
38
 
37
- export type ArgusStatus = "success" | "failure" | "pending";
39
+ export type ArgusStatus = "success" | "failure" | "pending" | "activated";
38
40
 
39
41
  export interface ArgusEvent {
40
42
  source: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voidwire/argus-send",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "Send events to Argus observability platform",
5
5
  "type": "module",
6
6
  "main": "./index.ts",
@@ -18,9 +18,6 @@
18
18
  "README.md",
19
19
  "LICENSE"
20
20
  ],
21
- "scripts": {
22
- "dev": "bun run cli.ts"
23
- },
24
21
  "keywords": [
25
22
  "argus",
26
23
  "observability",
@@ -40,5 +37,8 @@
40
37
  },
41
38
  "engines": {
42
39
  "bun": ">=1.0.0"
40
+ },
41
+ "scripts": {
42
+ "dev": "bun run cli.ts"
43
43
  }
44
- }
44
+ }