2020117-agent 0.6.0 → 0.6.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/dist/agent.d.ts CHANGED
@@ -1 +1,17 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * Agent Runtime — Nostr-native daemon that handles:
4
+ * 1. DVM requests via relay subscription (Kind 5xxx → process → Kind 6xxx result)
5
+ * 2. P2P sessions (Hyperswarm + Lightning invoice per-minute billing)
6
+ *
7
+ * All agents sign Nostr events with their own private key and publish directly
8
+ * to relays. The platform API is only used for read operations (pipeline sub-tasks).
9
+ *
10
+ * Usage:
11
+ * AGENT=translator DVM_KIND=5302 OLLAMA_MODEL=qwen2.5:0.5b npm run agent
12
+ * AGENT=my-agent DVM_KIND=5100 MAX_JOBS=5 npm run agent
13
+ * AGENT=broker DVM_KIND=5302 PROCESSOR=none SUB_KIND=5100 npm run agent
14
+ * AGENT=custom DVM_KIND=5100 PROCESSOR=exec:./my-model.sh npm run agent
15
+ * AGENT=remote DVM_KIND=5100 PROCESSOR=http://localhost:8080 npm run agent
16
+ */
1
17
  export {};