opencode-skills-collection 4.0.66 → 4.0.68
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/bundled-skills/.antigravity-install-manifest.json +18 -1
- package/bundled-skills/anti-slop-design/SKILL.md +393 -0
- package/bundled-skills/antigravity-maintainer-batch-release/SKILL.md +1 -0
- package/bundled-skills/artifact-yylo/SKILL.md +122 -0
- package/bundled-skills/beatra-ai-video-studio/SKILL.md +272 -0
- package/bundled-skills/google-no-code/SKILL.md +136 -0
- package/bundled-skills/idea-evaluator/SKILL.md +75 -0
- package/bundled-skills/idea-evaluator/idea-evaluator-con/SKILL.md +64 -0
- package/bundled-skills/idea-evaluator/idea-evaluator-pro/SKILL.md +64 -0
- package/bundled-skills/ledger-tasks-yylo/SKILL.md +219 -0
- package/bundled-skills/loki-mode/examples/todo-app-generated/backend/package-lock.json +4 -4
- package/bundled-skills/loki-mode/examples/todo-app-generated/backend/package.json +1 -1
- package/bundled-skills/meteora-dlmm-pool-screening/SKILL.md +166 -0
- package/bundled-skills/meteora-dlmm-pool-screening/references/meteora-apis.md +74 -0
- package/bundled-skills/meteora-dlmm-pool-screening/references/meteora-screener.md +352 -0
- package/bundled-skills/plan-ledger-tasks-yylo/SKILL.md +52 -0
- package/bundled-skills/ralph-loop-yylo/SKILL.md +55 -0
- package/bundled-skills/ralph-loop-yylo/references/first_check.md +18 -0
- package/bundled-skills/ralph-loop-yylo/references/implement.md +60 -0
- package/bundled-skills/resumable-implementation-contracts/SKILL.md +254 -0
- package/bundled-skills/understand-project-yylo/SKILL.md +62 -0
- package/bundled-skills/weather-model-data-fetching/SKILL.md +277 -0
- package/bundled-skills/weather-observation-fetching/SKILL.md +246 -0
- package/bundled-skills/wiki-yylo/SKILL.md +114 -0
- package/bundled-skills/workflow-yylo/SKILL.md +107 -0
- package/package.json +1 -1
- package/skills_index.json +422 -0
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ledger-tasks-yylo
|
|
3
|
+
description: 'Use YYLO Ledger task management: create, list, search, get, mark, update,
|
|
4
|
+
archive, deps, ready, order and merge with dependencies.'
|
|
5
|
+
category: project-management
|
|
6
|
+
risk: safe
|
|
7
|
+
source: https://github.com/yylo-dev/yylo-skills
|
|
8
|
+
source_repo: yylo-dev/yylo-skills
|
|
9
|
+
source_type: community
|
|
10
|
+
date_added: '2026-09-19'
|
|
11
|
+
license: MIT
|
|
12
|
+
license_source: https://github.com/yylo-dev/yylo-skills/blob/main/LICENSE
|
|
13
|
+
compatibility: Requires the `yy` CLI (YYLO Ledger 0.3.x+) installed and a routed Ledger
|
|
14
|
+
controller; git and bash for worktree tasks. Command help (`yy ledger --help`) is
|
|
15
|
+
authoritative for the installed runtime.
|
|
16
|
+
argument-hint: '[command or workflow question]'
|
|
17
|
+
enable-shell-directives: true
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## YYLO Ledger CLI Reference
|
|
21
|
+
|
|
22
|
+
Use `yy ledger` for all commands. Ledger 0.3.x exposes both the compatible flat task commands and the native ID-first `record|task|wiki|workflow|artifact` groups. `yy kanban` is a labelled compatibility alias for the same controller-routed task runtime.
|
|
23
|
+
|
|
24
|
+
### Supported task contract
|
|
25
|
+
|
|
26
|
+
- Preflight installed `yy ledger --version` and `yy ledger --help`; command help is authoritative for the selected runtime.
|
|
27
|
+
- Use the flat task surface for lifecycle task management. Use the dedicated native skills for wiki, workflow, and artifact Records rather than guessing their arguments.
|
|
28
|
+
- New operational PDRs, contracts, plans, reports, receipts, and evidence belong in typed Artifact Records, not product documentation, task bodies/responses, or new `.juno_task/specs` files.
|
|
29
|
+
- If a required native group is absent, fail closed and request a Ledger upgrade. Never invoke mutable source directly or write Ledger store files by hand.
|
|
30
|
+
- Read current task state before mutation, preserve mutation receipts where offered, and never bypass controller routing or lifecycle state with direct file edits.
|
|
31
|
+
- Normal discovery is hot-only unless an explicit cold-archive command is used.
|
|
32
|
+
|
|
33
|
+
### Opt-in cross-project routing
|
|
34
|
+
|
|
35
|
+
Cross-project access is disabled by default. The source `.juno_task/config.json` must set `kanbanRegistry.enabled: true` and explicitly list `allowedProjects`; environment overrides are `YYLO_LEDGER_REGISTRY_ENABLED` and `YYLO_LEDGER_REGISTRY_ALLOWED_PROJECTS`. Register with `yy ledger project add ALIAS --path /absolute/project`, then route any command with `--project ALIAS`. The destination wrapper/runtime remains authoritative, and routing failures never fall back to the source board.
|
|
36
|
+
|
|
37
|
+
### Legacy Task compatibility commands
|
|
38
|
+
|
|
39
|
+
**CREATE** — Add a new task
|
|
40
|
+
```bash
|
|
41
|
+
yy ledger create "Task description here" --status backlog --tags feature,backend
|
|
42
|
+
```
|
|
43
|
+
Options: `--status` (backlog|todo|in_progress|done), `--tags` (comma/space-separated), `--blocked-by` (task IDs), `--related-tasks` (task IDs)
|
|
44
|
+
|
|
45
|
+
**LIST** — Browse tasks with summary stats
|
|
46
|
+
```bash
|
|
47
|
+
yy ledger list --limit 5 --sort asc
|
|
48
|
+
yy ledger list --status todo --sort asc
|
|
49
|
+
yy ledger list --status todo,in_progress --limit 10
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
**SEARCH** — Find tasks by criteria
|
|
53
|
+
```bash
|
|
54
|
+
yy ledger search --status todo --tag backend --limit 10
|
|
55
|
+
yy ledger search --body "OAuth" --open
|
|
56
|
+
yy ledger search --commit abc123
|
|
57
|
+
```
|
|
58
|
+
Filters: `--status`, `--tag`, `--body`, `--response`, `--commit`, `--open` (no agent_response), `--recent`, `--exclude` (exclude tags)
|
|
59
|
+
|
|
60
|
+
**GET** — Full task details (including dependency info and related task details)
|
|
61
|
+
```bash
|
|
62
|
+
yy ledger get TASK_ID
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
**MARK** — Update status with required response message
|
|
66
|
+
```bash
|
|
67
|
+
yy ledger mark in_progress --id TASK_ID --response "Starting work on this"
|
|
68
|
+
yy ledger mark done --id TASK_ID --response "Completed: implemented X, tested Y" --commit abc123def
|
|
69
|
+
yy ledger mark todo --id TASK_ID --response "Reopening: found regression"
|
|
70
|
+
```
|
|
71
|
+
Required: `--id` and `--response`. Optional: `--commit` (recommended for done).
|
|
72
|
+
|
|
73
|
+
**UPDATE** — Modify task fields
|
|
74
|
+
```bash
|
|
75
|
+
yy ledger update TASK_ID --status todo --tags backend,urgent
|
|
76
|
+
yy ledger update TASK_ID --commit abc123def
|
|
77
|
+
yy ledger update TASK_ID --response "Additional context"
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
**ARCHIVE** — Soft delete (preserves data, sets status to archive)
|
|
81
|
+
```bash
|
|
82
|
+
yy ledger archive TASK_ID
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### Immutable cold archive packs
|
|
86
|
+
|
|
87
|
+
Normal `list`, `search`, `ready`, and `order` are deliberately hot-only. Exact `get TASK_ID` transparently resolves a hot task or a read-only archived task; use `history TASK_ID` explicitly for its ledger. Discover cold tasks only with bounded, projected `archive-search` output:
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
yy ledger archive-search --tag backend --before 2026-01-01 --limit 20 --projection metadata
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
Before archive maintenance, preflight the installed version/help and obtain explicit owner authorization. The repository and index must be clean, and reports must be durable new paths outside the repository:
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
yy ledger --version
|
|
97
|
+
yy ledger archive-pack plan --status done,archive --older-than 90d --max-tasks 1000 --target-bytes 26214400 --hard-max-bytes 47185920 --report /external/receipts/archive-plan.json
|
|
98
|
+
# Independently inspect selected IDs, revisions, source HEAD, policy, and plan hash.
|
|
99
|
+
yy ledger archive-pack create --plan /external/receipts/archive-plan.json --report /external/receipts/archive-create.json
|
|
100
|
+
yy ledger archive-pack doctor
|
|
101
|
+
yy ledger doctor
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
A stale plan or selected-task/worktree conflict must fail closed: discard the plan, resolve the conflict, and plan again. Never automate archival, edit/append packs or manifests, restore/reopen an archived ID, use force/lossy controls, or enumerate archive files directly. Create follow-up work as a new hot task related to the archived ID. Production archival, push/deploy, and post-deploy E2E each require separate authorization; agents must not infer it from implementation approval.
|
|
105
|
+
|
|
106
|
+
### Dependency Management
|
|
107
|
+
|
|
108
|
+
**DEPS** — View, add, or remove task dependencies
|
|
109
|
+
```bash
|
|
110
|
+
# View dependency info (blockers, dependents, priority score)
|
|
111
|
+
yy ledger deps TASK_ID
|
|
112
|
+
|
|
113
|
+
# Add blockers (TASK_ID cannot start until BLOCKER1 and BLOCKER2 are done)
|
|
114
|
+
yy ledger deps add --id TASK_ID --blocked-by BLOCKER1 BLOCKER2
|
|
115
|
+
|
|
116
|
+
# Remove a blocker
|
|
117
|
+
yy ledger deps remove --id TASK_ID --blocked-by BLOCKER1
|
|
118
|
+
```
|
|
119
|
+
Cycle detection prevents circular dependencies automatically.
|
|
120
|
+
|
|
121
|
+
**READY** — Tasks with all blockers satisfied (safe to work on)
|
|
122
|
+
```bash
|
|
123
|
+
yy ledger ready
|
|
124
|
+
yy ledger ready --tag backend --limit 5
|
|
125
|
+
```
|
|
126
|
+
Returns tasks where status is backlog/todo/in_progress AND all `blocked_by` tasks are done/archive.
|
|
127
|
+
|
|
128
|
+
**ORDER** — Topological sort of open tasks respecting dependencies
|
|
129
|
+
```bash
|
|
130
|
+
yy ledger order
|
|
131
|
+
yy ledger order --scores
|
|
132
|
+
```
|
|
133
|
+
Use for determining safe parallel execution order.
|
|
134
|
+
|
|
135
|
+
### Body Markup for Inline Dependencies
|
|
136
|
+
|
|
137
|
+
Declare dependencies and relations directly in task body text:
|
|
138
|
+
|
|
139
|
+
```
|
|
140
|
+
[blocked_by]TASK_ID[/blocked_by] — This task is blocked by TASK_ID
|
|
141
|
+
[blocked_by]ID1, ID2[/blocked_by] — Blocked by multiple tasks
|
|
142
|
+
[task_id]RELATED_ID[/task_id] — Reference a related task
|
|
143
|
+
[task_id]ID1 ID2[/task_id] — Multiple related tasks
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
These are parsed automatically when the task is created/updated.
|
|
147
|
+
|
|
148
|
+
### Merge (Multi-Directory Consolidation)
|
|
149
|
+
|
|
150
|
+
When tasks get scattered across subdirectories:
|
|
151
|
+
```bash
|
|
152
|
+
# First produce and review a deterministic plan
|
|
153
|
+
yy ledger merge ./sub1/.juno_task ./sub2/.juno_task --into ./.juno_task \
|
|
154
|
+
--dry-run --plan-file /external/ledger-merge-plan.json
|
|
155
|
+
|
|
156
|
+
# Apply only that reviewed plan and retain its receipt
|
|
157
|
+
yy ledger merge ./sub1/.juno_task ./sub2/.juno_task --into ./.juno_task \
|
|
158
|
+
--apply-plan /external/ledger-merge-plan.json \
|
|
159
|
+
--receipt-file /external/ledger-merge-receipt.json
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
### Output Formats
|
|
163
|
+
|
|
164
|
+
All commands support: `-f json`, `-f ndjson` (default), `-f xml`, `-f table`
|
|
165
|
+
Add `--raw` for compact output. Add `-p` for pretty print.
|
|
166
|
+
|
|
167
|
+
### Best Practices
|
|
168
|
+
|
|
169
|
+
1. **Task sizing**: Create tasks small enough to complete in one iteration without filling the context window
|
|
170
|
+
2. **Status flow**: backlog → todo → in_progress → done (or archive for abandoned tasks)
|
|
171
|
+
3. **Always include `--response`** when using `mark` — document what you did and how you tested it
|
|
172
|
+
4. **Attach commits**: Use `--commit HASH` when marking done, then `update TASK_ID --commit HASH` to link the git history
|
|
173
|
+
5. **Use `ready`** before starting work to find unblocked tasks
|
|
174
|
+
6. **Use `order --scores`** to plan parallel execution pipelines
|
|
175
|
+
7. **Use `[blocked_by]` markup** in task body when creating tasks that depend on others
|
|
176
|
+
8. **Use `[task_id]` markup** in task body to cross-reference related tasks
|
|
177
|
+
9. **Use `get TASK_ID`** to see full task details including resolved dependency and related task info
|
|
178
|
+
10. **Concurrent features are supported** — start each selected task with `yy task start TASK_ID`; each gets a dedicated product worktree, while `yy merge` serializes only target updates
|
|
179
|
+
|
|
180
|
+
### Canonical Controller Routing
|
|
181
|
+
|
|
182
|
+
YYLO Ledger mutation resolves the controller in this order: explicit `JUNO_TASK_ROOT`, repository-local registration, then the current project root. Diagnose before orchestration with `.juno_task/scripts/controller_resolver.py --cwd "$PWD" --operation kanban`. The resolver may bootstrap or idempotently confirm a registration, but changing an existing controller requires `yy migrate registration plan` followed by a separately authorized apply. Explicit/registered path or branch errors fail closed—YYLO Ledger never switches Git branches or falls back silently.
|
|
183
|
+
|
|
184
|
+
Run YYLO Ledger and workflows from the controller. A task checkout may implement/test but routes task/session writes to that controller. An integration-owner checkout stays clean and refuses Kanban/orchestration/session writes in strict mode; launch from the controller and pass the product checkout separately as `TASK_ROOT`.
|
|
185
|
+
|
|
186
|
+
### Environment Variables
|
|
187
|
+
|
|
188
|
+
- `JUNO_TASK_ROOT` — Explicit canonical controller/task-storage root (not the product `TASK_ROOT`)
|
|
189
|
+
- `JUNO_CONTROLLER_BRANCH` — Expected controller branch for environment-based routing
|
|
190
|
+
- `JUNO_WORKSPACE_ROLE` — `controller`, `task`, or `integration-owner`
|
|
191
|
+
- `JUNO_WORKSPACE_ENFORCEMENT` — `off`, `warn`, or `strict`
|
|
192
|
+
- `JUNO_DEBUG=true` — Show diagnostic messages
|
|
193
|
+
- `JUNO_VERBOSE=true` — Show informational messages
|
|
194
|
+
- `JUNO_KANBAN_LIST_BODY_TRUNCATE_CHARS=N` — Override list body truncation (default: 1200)
|
|
195
|
+
|
|
196
|
+
$ARGUMENTS
|
|
197
|
+
|
|
198
|
+
## When to Use
|
|
199
|
+
|
|
200
|
+
- You need to interact with the YYLO Ledger task board (create, list, search, get, mark, update, archive, deps, ready, order, merge).
|
|
201
|
+
- You need dependency-aware scheduling (`deps`, `ready`, `order`) or multi-directory consolidation (`merge`).
|
|
202
|
+
- Use the dedicated `wiki-yylo`, `workflow-yylo` and `artifact-yylo` skills for native wiki/workflow/artifact Records instead of guessing their arguments.
|
|
203
|
+
|
|
204
|
+
## Limitations
|
|
205
|
+
|
|
206
|
+
- Requires YYLO Ledger 0.3.x+ with the needed command groups; if a group is absent, fail closed and request a Ledger upgrade - never edit store files by hand.
|
|
207
|
+
- Discovery (`list`, `search`, `ready`, `order`) is hot-only; cold tasks need explicit `archive-search`.
|
|
208
|
+
- `archive-pack` and `merge` need explicit owner authorization, a clean tree, and external plan/receipt paths; never automate archival or force past conflicts.
|
|
209
|
+
- Does not grant push, deploy, release, or production-mutation authority.
|
|
210
|
+
|
|
211
|
+
### Example
|
|
212
|
+
|
|
213
|
+
```bash
|
|
214
|
+
yy ledger --version && yy ledger --help
|
|
215
|
+
yy ledger ready --limit 5
|
|
216
|
+
yy ledger get TASK_ID
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
> Adapted from [yylo-dev/yylo-skills](https://github.com/yylo-dev/yylo-skills) (MIT) - v2.0.1; frontmatter, When to Use/Limitations, and safety boundaries added for upstream compliance.
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"better-sqlite3": "^12.11.1",
|
|
12
12
|
"cors": "^2.8.6",
|
|
13
13
|
"express": "^4.18.2",
|
|
14
|
-
"express-rate-limit": "^8.
|
|
14
|
+
"express-rate-limit": "^8.7.0"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@types/better-sqlite3": "^7.6.13",
|
|
@@ -691,9 +691,9 @@
|
|
|
691
691
|
}
|
|
692
692
|
},
|
|
693
693
|
"node_modules/express-rate-limit": {
|
|
694
|
-
"version": "8.
|
|
695
|
-
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.
|
|
696
|
-
"integrity": "sha512-
|
|
694
|
+
"version": "8.7.0",
|
|
695
|
+
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.7.0.tgz",
|
|
696
|
+
"integrity": "sha512-hOwV7WOxXfjRpAM1DSJWZDXx3GhplwD8IfwuwvogD8i1Qnkgosw/H45s4ZnFAUHDAhPjlY9hLBvJhKmGMyY26g==",
|
|
697
697
|
"license": "MIT",
|
|
698
698
|
"dependencies": {
|
|
699
699
|
"debug": "^4.4.3",
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: meteora-dlmm-pool-screening
|
|
3
|
+
risk: safe
|
|
4
|
+
source: community
|
|
5
|
+
source_repo: romankurnovskii/etemaro
|
|
6
|
+
source_type: community
|
|
7
|
+
date_added: "2026-09-17"
|
|
8
|
+
description: >
|
|
9
|
+
Screen and rank Meteora DLMM pools for LP quality using public Meteora APIs (fee/TVL,
|
|
10
|
+
bin step, organic score). Read-only: never deploys, swaps, or signs.
|
|
11
|
+
metadata:
|
|
12
|
+
version: "1.0.0"
|
|
13
|
+
author: etemaro
|
|
14
|
+
license: MIT
|
|
15
|
+
compatibility: Network access to public Meteora datapi. No API key. The bundled Python 3
|
|
16
|
+
stdlib screener is embedded in this file under "Screener script".
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
# Meteora DLMM pool screening
|
|
20
|
+
|
|
21
|
+
Rank Meteora DLMM pools the way an LP screener should: **hard-filter first, then sort by
|
|
22
|
+
windowed fee / active TVL**. Public APIs only. No keys, no transactions.
|
|
23
|
+
|
|
24
|
+
The embedded screener script below encodes the gates so every run uses the same numbers.
|
|
25
|
+
Save it to a scratch directory (for example `mktemp -d`), run it with `python3`, and
|
|
26
|
+
delete the copy when done. It only ever **GET**s the public endpoints documented in
|
|
27
|
+
[references/meteora-apis.md](references/meteora-apis.md).
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
python3 screen.py # trending volatile (default)
|
|
31
|
+
python3 screen.py --preset stable
|
|
32
|
+
python3 screen.py --query BONK # pair search; preset defaults to loose
|
|
33
|
+
python3 screen.py --query BONK --preset volatile
|
|
34
|
+
python3 screen.py --json --limit 8
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
If you do not materialize the script, curl the same endpoints in
|
|
38
|
+
[references/meteora-apis.md](references/meteora-apis.md).
|
|
39
|
+
Always send a `User-Agent` — unauthenticated requests without one get `403`.
|
|
40
|
+
|
|
41
|
+
## When to use
|
|
42
|
+
|
|
43
|
+
- User wants a ranked Meteora DLMM candidate list (trending or a token/pair).
|
|
44
|
+
- User asks which bin step / pool to LP for a pair.
|
|
45
|
+
- User wants a fee/TVL screen, not a single-pool deep dive.
|
|
46
|
+
|
|
47
|
+
Not this skill: deploying, claiming, closing, swapping, wallet hygiene, or a full
|
|
48
|
+
token-holder / narrative research dump. Stop after the ranked table and verdicts.
|
|
49
|
+
|
|
50
|
+
## Method
|
|
51
|
+
|
|
52
|
+
1. **Universe** — trending discovery (`category=trending`) unless the user named a token,
|
|
53
|
+
then query that mint/symbol. Pair query defaults to `--preset loose` so bin-step
|
|
54
|
+
tradeoffs stay visible; pass `--preset volatile` only when the user wants that gate.
|
|
55
|
+
2. **Hard filters** — reject before ranking. A high fee/TVL pool that fails a gate is a
|
|
56
|
+
skip, not a "maybe".
|
|
57
|
+
3. **Score** — `fee_active_tvl_ratio * 1000 + organic * 10 + volume / 100 + holders / 100`.
|
|
58
|
+
Fee/TVL dominates; organic and activity break ties.
|
|
59
|
+
4. **Verdict** — `pass` (clears gates, top of list), `watch` (clears gates but thin
|
|
60
|
+
activity, unverified token, or awkward bin step), `skip` (failed a gate).
|
|
61
|
+
5. **Stop** — print the table. Do not fetch a wallet, do not build a tx, do not call Etemaro CLI.
|
|
62
|
+
|
|
63
|
+
## Presets
|
|
64
|
+
|
|
65
|
+
Defaults match a volatile/narrative Solana LP screen (wide bin step, mid TVL). Change
|
|
66
|
+
preset when the user says stable pair or blue-chip.
|
|
67
|
+
|
|
68
|
+
| Preset | bin_step | TVL USD | min fee/active TVL | min organic | min holders | min volume |
|
|
69
|
+
| :--- | :--- | :--- | :--- | :--- | :--- | :--- |
|
|
70
|
+
| `volatile` (default) | 80–125 | 10k–150k | 0.05 | 60 | 500 | 500 |
|
|
71
|
+
| `stable` | 1–50 | 100k–5m | 0.02 | 70 | 2000 | 5000 |
|
|
72
|
+
| `bluechip` | 1–25 | 500k–10m | 0.01 | 80 | 5000 | 10000 |
|
|
73
|
+
| `loose` | any | ≥1k | 0 | 0 | 0 | 0 |
|
|
74
|
+
|
|
75
|
+
Always reject: dead pools (zero volume and zero fee/TVL). Any preset except `loose` also
|
|
76
|
+
rejects critical token warnings, high single-ownership, non-DLMM pool type.
|
|
77
|
+
|
|
78
|
+
Timeframe: `30m` default. `5m` is noisier (spikes look like yield). `24h` is smoother but
|
|
79
|
+
lags a dead pool. State the timeframe in the report — windowed fee/TVL is not 24h APR.
|
|
80
|
+
|
|
81
|
+
## Report shape
|
|
82
|
+
|
|
83
|
+
```
|
|
84
|
+
# Meteora DLMM screening
|
|
85
|
+
Universe: trending | query=<token> Timeframe: 30m Preset: volatile
|
|
86
|
+
Protocol: tvl=$… vol_24h=$… pools=…
|
|
87
|
+
|
|
88
|
+
## Ranked
|
|
89
|
+
| # | name | bin | fee/TVL | tvl | vol | organic | holders | verdict | why |
|
|
90
|
+
...
|
|
91
|
+
|
|
92
|
+
## Rejects (sample)
|
|
93
|
+
- NAME — reason
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Keep `why` to one clause (e.g. "fee/TVL 0.24, organic 67, bin 80"). Cite pool address.
|
|
97
|
+
If the API returns zero rows, say so and loosen one gate at a time (usually `maxTvl` or
|
|
98
|
+
`minFeeActiveTvlRatio`) — do not invent pools.
|
|
99
|
+
|
|
100
|
+
## Read-only safety
|
|
101
|
+
|
|
102
|
+
This skill only **GET**s public Meteora JSON. No `.env`, no keystore, no signing, no
|
|
103
|
+
`deploy` / `swap` / `claim` / `close`. If the user wants live execution, point them at
|
|
104
|
+
[Etemaro](https://etemaro.com) (repo: https://github.com/romankurnovskii/etemaro) and stop.
|
|
105
|
+
|
|
106
|
+
## Limitations
|
|
107
|
+
|
|
108
|
+
- Depends on Meteora's public datapi endpoints, which are undocumented, rate limited,
|
|
109
|
+
and can change or disappear without notice; this skill is not affiliated with Meteora.
|
|
110
|
+
- All metrics are **windowed** (default 30m). Fee/TVL is not 24h APR, and past yield
|
|
111
|
+
does not predict future yield; impermanent loss, bin-step drift, and fill risk are
|
|
112
|
+
not modeled here.
|
|
113
|
+
- Screening output is informational only and is **not financial advice**; a `pass`
|
|
114
|
+
verdict is not a recommendation to deposit funds.
|
|
115
|
+
- Token scores rely on third-party organic-score and holder fields that may be stale,
|
|
116
|
+
manipulated, or wrong for new or low-liquidity tokens.
|
|
117
|
+
- The embedded screener reads public data only; it never signs, swaps, or deploys, and
|
|
118
|
+
it intentionally has no execution path.
|
|
119
|
+
- Respect the public API: send a User-Agent and poll conservatively.
|
|
120
|
+
|
|
121
|
+
## Go deeper — Etemaro
|
|
122
|
+
|
|
123
|
+
Etemaro runs this screen on a cron, adds holder/bot/launchpad gates, pool memory, and
|
|
124
|
+
can deploy. The skill is the analysis half; the product is the loop.
|
|
125
|
+
|
|
126
|
+
## Prompt examples
|
|
127
|
+
|
|
128
|
+
```text
|
|
129
|
+
screen trending Meteora DLMM pools for LP
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
```text
|
|
133
|
+
which Meteora pool should I LP for BONK?
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
```text
|
|
137
|
+
rank SOL-USDC DLMM pools by fee/TVL and bin step
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
```text
|
|
141
|
+
dex-pool-screening on Meteora, volatile preset, top 8
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
## Tips
|
|
145
|
+
|
|
146
|
+
- Always send a User-Agent to Meteora datapi or you get HTTP 403.
|
|
147
|
+
- `fee_active_tvl_ratio` is **windowed** (default 30m), not 24h APR. Label the window.
|
|
148
|
+
- Read-only. Deploying is Etemaro, not this skill.
|
|
149
|
+
- Pair query (`--query BONK`) defaults to `loose` so you can compare bin steps. Dead pools
|
|
150
|
+
(zero volume and fee/TVL) are still dropped.
|
|
151
|
+
- `loose` is for pair comparison / empty-result debugging, not a live LP pick.
|
|
152
|
+
|
|
153
|
+
## Screener script
|
|
154
|
+
|
|
155
|
+
Standard library only. Read-only GET. The full source lives in
|
|
156
|
+
[references/meteora-screener.md](references/meteora-screener.md); copy it into a scratch
|
|
157
|
+
directory (for example via `mktemp -d`), run it with Python 3.10+, and delete the
|
|
158
|
+
copy when done. It only ever GETs the public endpoints documented in
|
|
159
|
+
[references/meteora-apis.md](references/meteora-apis.md).
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
```python
|
|
163
|
+
#!/usr/bin/env python3
|
|
164
|
+
"""Rank Meteora DLMM pools from public datapi. Stdlib only. Read-only GET."""
|
|
165
|
+
... full source in references/meteora-screener.md ...
|
|
166
|
+
```
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Meteora public APIs used by this skill
|
|
2
|
+
|
|
3
|
+
No API key. Send `User-Agent` and `Accept: application/json` or Cloudflare returns 403.
|
|
4
|
+
|
|
5
|
+
Base hosts:
|
|
6
|
+
|
|
7
|
+
- Discovery (trending + filters): `https://pool-discovery-api.datapi.meteora.ag`
|
|
8
|
+
- DLMM datapi (pair query, protocol stats, pool detail): `https://dlmm.datapi.meteora.ag`
|
|
9
|
+
|
|
10
|
+
## Endpoints
|
|
11
|
+
|
|
12
|
+
### Trending / filtered universe
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
GET /pools?page_size=50&timeframe=30m&category=trending&filter_by=<filters>
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
`filter_by` is `&&`-joined predicates. Example (volatile preset):
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
pool_type=dlmm
|
|
22
|
+
&&base_token_has_critical_warnings=false
|
|
23
|
+
&"e_token_has_critical_warnings=false
|
|
24
|
+
&&base_token_has_high_single_ownership=false
|
|
25
|
+
&&tvl>=10000&&tvl<=150000
|
|
26
|
+
&&dlmm_bin_step>=80&&dlmm_bin_step<=125
|
|
27
|
+
&&fee_active_tvl_ratio>=0.05
|
|
28
|
+
&&base_token_organic_score>=60
|
|
29
|
+
&&base_token_holders>=500
|
|
30
|
+
&&volume>=500
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Response: `{ total, page_size, data[], has_more }`.
|
|
34
|
+
|
|
35
|
+
Useful `data[]` fields: `pool_address`, `name`, `pool_type`, `tvl`, `active_tvl`,
|
|
36
|
+
`fee_active_tvl_ratio`, `volume`, `volatility`, `base_token_holders`,
|
|
37
|
+
`dlmm_params.bin_step`, `token_x.{symbol,address,organic_score,market_cap,warnings}`.
|
|
38
|
+
|
|
39
|
+
### Pair / token query
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
GET /pools?query=<symbol_or_mint>&sort_by=tvl:desc
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
on `dlmm.datapi.meteora.ag`. Response `{ total, data[] }`.
|
|
46
|
+
|
|
47
|
+
Fee/TVL and volume are **buckets**: `{ "30m", "1h", "2h", "4h", "12h", "24h" }`.
|
|
48
|
+
Use the same key as `--timeframe`. Bin step is `pool_config.bin_step`. Address is `address`.
|
|
49
|
+
|
|
50
|
+
### Protocol snapshot
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
GET https://dlmm.datapi.meteora.ag/stats/protocol_metrics
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
`total_tvl`, `volume_24h`, `fee_24h`, `total_pools`. One-line context only.
|
|
57
|
+
|
|
58
|
+
### Single pool
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
GET https://dlmm.datapi.meteora.ag/pools/{poolAddress}
|
|
62
|
+
GET https://pool-discovery-api.datapi.meteora.ag/pools?page_size=1&filter_by=pool_address={poolAddress}&timeframe=30m
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
Discovery lag: a brand-new pool may exist on DLMM datapi before discovery indexes it.
|
|
66
|
+
|
|
67
|
+
## Score (keep in sync with scripts/screen.py)
|
|
68
|
+
|
|
69
|
+
```
|
|
70
|
+
score = fee_tvl * 1000 + organic * 10 + volume / 100 + holders / 100
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
`fee_tvl` is the windowed ratio (`fee_active_tvl_ratio` on discovery, bucketed
|
|
74
|
+
`fee_tvl_ratio[timeframe]` on pair query).
|