You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/public/agents.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,9 @@ GROUP BY e.name ORDER BY active_devs DESC LIMIT 10
79
79
```
80
80
81
81
## Important Notes
82
+
-**Only `oso.*` tables are publicly accessible.** Tables with other namespaces (e.g., `ethereum.*`) require customer-scoped API keys and will return an error with a standard key.
82
83
- GitHub Archive data can be ~3 days behind real-time
83
84
- Only public GitHub events (no private repos)
85
+
- When listing/ranking ecosystems, add `WHERE e.is_crypto = 1 AND e.is_category = 0` to filter out internal ODD categories
84
86
- Use narrow date ranges (7-30 days) for fast queries
Copy file name to clipboardExpand all lines: notebooks/agent-guide.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ def _(mo):
24
24
curl -s {_url}
25
25
```
26
26
27
-
The guide is a standalone markdown file with connection setup, SQL dialect, key tables, and starter queries. Paste it into Claude, ChatGPT, or any agent framework — your agent will self-configure and start querying.
27
+
The guide is a standalone markdown file with connection setup, SQL dialect, key tables, and starter queries. Paste it into Claude Code, Codex, or any agent framework. Your agent will ask you for an API key and start querying.
28
28
""")
29
29
return
30
30
@@ -299,8 +299,8 @@ def _(mo):
299
299
"```\n"
300
300
)
301
301
mo.vstack([
302
-
mo.md("## Create an Interactive Notebook"),
303
-
mo.md("Skill template for creating new notebooks using DDP data with marimo. Copy the guide below. Point your agent to existing notebooks we've created for inspiration."),
302
+
mo.md("## Creating Interactive Notebooks"),
303
+
mo.md("We also have some skill templates for creating notebooks on top of DDP data with marimo. The guides below are opinionated but hopefully useful as inspiration. You can also point your agent to the [full repo](https://github.com/opensource-observer/ddp)."),
0 commit comments