@seekdaseek/plugin-agentfeed 0.4.1 → 0.5.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 +2 -0
- package/dist/index.js +17 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -10,6 +10,8 @@ Backed by [AgentFeed](https://x402.ochinimus.app) — multi-exchange liquidation
|
|
|
10
10
|
|
|
11
11
|
| Action | Data | Price |
|
|
12
12
|
|---|---|---|
|
|
13
|
+
| `AGENTFEED_GET_EXIT_QUOTE` | What a lending reserve would realise if seized and sold: oracle mark vs live-routed realisable value, haircut in bps, whether the liquidation bonus covers it | $0.02 |
|
|
14
|
+
| `AGENTFEED_GET_EXIT_METHOD` | How those exit measurements are produced, so they can be checked rather than trusted | free |
|
|
13
15
|
| `AGENTFEED_GET_TRADE_CONTEXT` | Full market state: prices, funding, fear/greed, positioning, liquidations | $0.01 |
|
|
14
16
|
| `AGENTFEED_GET_LIQUIDATIONS` | Recent SOL/BTC liquidation prints, filterable | $0.003 |
|
|
15
17
|
| `AGENTFEED_GET_LIQUIDATION_STATS` | 1h/24h totals, long/short split, biggest print | $0.004 |
|
package/dist/index.js
CHANGED
|
@@ -565,6 +565,23 @@ var ENDPOINTS = [
|
|
|
565
565
|
description: "Peg deviation for one tokenized equity broken out by trading session ($0.03) \u2014 open, premarket, afterhours, overnight, weekend \u2014 with mean, p95, max bps and median liquidity per session, and the worst off-hours window flagged. The open session acts as a control: tight deviation there means the off-hours numbers are signal rather than measurement noise.",
|
|
566
566
|
triggers: ["when does <symbol> depeg", "peg by session for <symbol>", "weekend peg for <symbol>"],
|
|
567
567
|
param: "symbol"
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
path: "/api/exit-quote?symbol=:symbol",
|
|
571
|
+
usd: 0.02,
|
|
572
|
+
action: "AGENTFEED_GET_EXIT_QUOTE",
|
|
573
|
+
similes: ["EXIT_QUOTE", "COLLATERAL_EXIT", "LIQUIDATION_HAIRCUT", "CAN_I_SELL_THIS"],
|
|
574
|
+
description: "What a lending reserve would actually realise if it had to be seized and sold ($0.02): the protocol oracle mark, the realisable value measured by live routing at real clip sizes, the haircut in bps, and whether the liquidation bonus covers the cost of selling. Measured every 15 minutes against Solana lending markets since 11 August 2026 by our own collector; this tape exists nowhere else. Returns the nearest clip the ladder actually probed, never an interpolation. A terminal no-exit verdict requires six consecutive agreeing observations from that symbol own tape, so one bad quote cannot become a finding. Never returns null: an unconfirmed sample falls back to the last corroborated measurement with its age.",
|
|
575
|
+
triggers: ["what would <symbol> realise if liquidated", "exit quote for <symbol>", "can this collateral actually be sold", "liquidation haircut for <symbol>"],
|
|
576
|
+
param: "symbol"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
path: "/api/exit-method",
|
|
580
|
+
usd: 0,
|
|
581
|
+
action: "AGENTFEED_GET_EXIT_METHOD",
|
|
582
|
+
similes: ["EXIT_METHOD", "HOW_IS_EXIT_MEASURED", "COLLATERAL_METHODOLOGY"],
|
|
583
|
+
description: "FREE: exactly how the collateral exit measurements are produced, so the numbers can be checked rather than trusted. Marked value versus realisable value, the corroboration rule, the status vocabulary including why a router refusing a token outright is permissioning and not illiquidity, the size-matched control design, and the live row and sweep counts computed at request time. Read this before paying for a quote.",
|
|
584
|
+
triggers: ["how is exit liquidity measured", "collateral methodology", "how do you know this collateral cannot be sold"]
|
|
568
585
|
}
|
|
569
586
|
];
|
|
570
587
|
var SYMBOL_RE = /\b[A-Z]{1,6}x\b/;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seekdaseek/plugin-agentfeed",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "elizaOS plugin for AgentFeed
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"description": "elizaOS plugin for AgentFeed — paid crypto and Solana data over x402 micropayments. Collateral exit liquidity measured against live routing, full-universe liquidation cascade detection across ~600 USDT perps on Bybit, OKX and Binance, tokenized-equity peg deviation, plus positioning, funding, prices and token risk. $0.001–$0.05 per call in USDC, no API keys.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|