repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | --- |
| #2 | name: dflow-docs |
| #3 | description: "Discover and use DFlow documentation, Agent CLI, Trading API, Metadata API, Proof KYC, prediction markets, and the hosted DFlow docs MCP. Use before implementing DFlow features or when field-level endpoint details are needed." |
| #4 | metadata: |
| #5 | source: https://pond.dflow.net/llms.txt |
| #6 | mcp-server: https://pond.dflow.net/mcp |
| #7 | docs-index: skills/dflow-docs/llms.txt |
| #8 | --- |
| #9 | |
| #10 | # DFlow Docs |
| #11 | |
| #12 | Use this skill as the DFlow routing layer for agents in this repo. |
| #13 | |
| #14 | ## Required First Step |
| #15 | |
| #16 | Before exploring individual pages, read the local documentation index: |
| #17 | |
| #18 | ```bash |
| #19 | sed -n '1,220p' skills/dflow-docs/llms.txt |
| #20 | ``` |
| #21 | |
| #22 | The canonical remote index is: |
| #23 | |
| #24 | ```text |
| #25 | https://pond.dflow.net/llms.txt |
| #26 | ``` |
| #27 | |
| #28 | Refresh the local copy when needed: |
| #29 | |
| #30 | ```bash |
| #31 | curl -fsSL https://pond.dflow.net/llms.txt -o skills/dflow-docs/llms.txt |
| #32 | ``` |
| #33 | |
| #34 | ## Reference Entrypoints |
| #35 | |
| #36 | - Local index: `skills/dflow-docs/llms.txt` |
| #37 | - Hosted docs MCP: `https://pond.dflow.net/mcp` |
| #38 | |
| #39 | If a field shape, endpoint parameter, error code, or compliance detail matters, prefer the hosted DFlow docs MCP or the local OpenAPI spec over memory. |
| #40 | |
| #41 | ## Agent CLI |
| #42 | |
| #43 | Install: |
| #44 | |
| #45 | ```bash |
| #46 | curl -fsS https://cli.dflow.net | sh |
| #47 | ``` |
| #48 | |
| #49 | Set up: |
| #50 | |
| #51 | ```bash |
| #52 | dflow setup |
| #53 | ``` |
| #54 | |
| #55 | Common read-only commands: |
| #56 | |
| #57 | ```bash |
| #58 | dflow whoami |
| #59 | dflow positions |
| #60 | dflow guardrails show |
| #61 | ``` |
| #62 | |
| #63 | Trading commands submit real transactions. Only run them when the operator explicitly asks for live execution and local DFlow guardrails have been checked. |
| #64 | |
| #65 | ## Skill Routing |
| #66 | |
| #67 | Use the focused skill when the task matches: |
| #68 | |
| #69 | - `dflow-spot-trading`: Solana spot swaps, quotes, sponsored swaps, priority fees. |
| #70 | - `dflow-kalshi-trading`: buy, sell, redeem YES/NO prediction market tokens. |
| #71 | - `dflow-kalshi-market-scanner`: discover/filter events, markets, series, tags, candles. |
| #72 | - `dflow-kalshi-market-data`: orderbook, live data, trades, WebSocket streams. |
| #73 | - `dflow-kalshi-portfolio`: positions, P&L, rent reclaim. |
| #74 | - `dflow-proof-kyc`: wallet identity verification for Kalshi markets. |
| #75 | - `dflow-platform-fees`: builder fees through `platformFeeBps` or `platformFeeScale`. |
| #76 | - `dflow-phantom-connect`: full-stack Phantom wallet apps with DFlow trading. |
| #77 | |
| #78 | ## Safety Defaults |
| #79 | |
| #80 | - CLI amounts are atomic units, not UI amounts. |
| #81 | - Prediction market buys require Proof KYC and jurisdiction checks. |
| #82 | - Kalshi maintenance is Thursdays, 3:00 AM to 5:00 AM ET. |
| #83 | - Use `dflow guardrails show` before autonomous execution. |
| #84 | - Do not ask for or print private keys, vault passwords, mnemonics, or exported wallet material. |
| #85 |