13 Devin findings across 10 files: 🔴 Critical: - app/api/v2_catalog.py:42 — `_fetch_hint` returns `da fetch` in /api/v2/catalog responses (user-visible in every catalog list) - cli/skills/agnes-data-querying.md — 11 stale `da fetch`/`da sync` refs in the bundled skill markdown - config/claude_md_template.txt:38 — referenced `agnes pull --docs-only` flag that does NOT exist in agnes pull (removed; spec only ships --quiet/--json/ --dry-run) 🟡 Important: - app/api/admin.py:252 — `da fetch` in bq_max_scan_bytes hint - cli/commands/auth.py:119 — `da sync` in import-token docstring (--help text) - cli/commands/tokens.py:48 — "Export it so `da` can use it" prose - ARCHITECTURE.md — 4 stale rows in CLI commands table - README.md — stale paragraphs for analysts (da sync, da analyst setup) 🚩 Substantive observations addressed: - app/api/query.py:249,302,489 — server-side error/help strings still said `da sync`/`da fetch` (returned in API responses to clients) - cli/commands/snapshot.py:235-241 — DuckDB existence guard incorrectly blocked `--estimate` (server-side dry-run that never opens local DB). Added test ensuring estimate path skips the guard. Skipped (intentionally historical): - app/api/admin.py:2377,2429,2437 — historical comments describing past manifest-vs-sync_state bug; past tense, accurate to keep as `da sync`.
6.4 KiB
| name | description |
|---|---|
| agnes-table-registration | Use when adding tables to the Agnes catalog so analysts can query them — single registration, bulk discovery, updates, and removals. Admin role required. |
Registering tables in Agnes
agnes catalog lists tables from system.duckdb::table_registry. A table you can agnes snapshot create exists in that registry. This skill is the protocol for getting tables into and out of it.
Auth: every command here requires admin role. The CLI sends the active PAT (agnes auth import-token); REST examples use Authorization: Bearer $PAT against the configured server.
Decision flow — single vs. bulk vs. update
user wants to add tables
├── one specific table they named → register-table (single)
├── "everything from <source>" → discover-and-register
├── existing entry, change a field → PUT /api/admin/registry/{id}
└── remove a table from catalog → DELETE /api/admin/registry/{id}
Before you register — verify the source exists
Registering a table that does NOT exist at the source is silent: the row lands in the registry, but every later agnes snapshot create / agnes query against it 404s or 500s with an opaque message. Always verify first.
For BigQuery (source-type=bigquery):
# 1. confirm the dataset and table exist (uses the analyst's BQ creds, not the server's)
bq show --project_id=<billing-project> <data-project>:<dataset>.<table>
For Keboola (source-type=keboola):
# the discover-and-register dry-run is the lowest-friction probe
agnes admin discover-and-register --source-type=keboola --dry-run
If the source can't confirm the table exists, stop and ask the user to verify rather than registering speculatively.
Single-table registration
agnes admin register-table <name> \
--source-type=<keboola|bigquery|jira> \
--bucket=<dataset_or_bucket> \
--source-table=<source_object_name> \
--query-mode=<local|remote> \
--description="<short purpose, 1 line>"
Field meanings:
| Flag | Meaning | Example |
|---|---|---|
<name> |
Display name; the slugged form (lower, spaces→_) becomes the table id |
User Sessions → id user_sessions |
--source-type |
Connector identity | bigquery, keboola, jira |
--bucket |
BQ dataset / Keboola bucket / Jira board | product_analytics |
--source-table |
Object name at the source (case-sensitive for BQ) | s1_session_landings |
--query-mode |
local = synced parquet / remote = on-demand BQ |
remote for BQ views |
--description |
One sentence shown in agnes catalog |
"Per-session landing-page rows." |
Idempotence: the API returns 409 Conflict if the slugged id already exists. Always run agnes admin list-tables --json first and only register when the id is missing.
Bulk discovery
When the user says "register everything from ", let the connector enumerate:
# 1. preview without writing anything
agnes admin discover-and-register --source-type=bigquery --dry-run --json
# 2. review output, then commit
agnes admin discover-and-register --source-type=bigquery
discover-and-register is safe on re-run: existing tables are skipped (not overwritten), new ones added. The --dry-run output lists what would change.
For Keboola, pass --token and --url if not already in instance.yaml:
agnes admin discover-and-register --source-type=keboola \
--token="$KEBOOLA_TOKEN" --url=https://connection.keboola.com --dry-run
Update an existing entry
No CLI command for this — use REST directly:
# change description, source-table, or query-mode on a registered entry
curl -sS -X PUT \
-H "Authorization: Bearer $PAT" \
-H "Content-Type: application/json" \
-d '{"description": "Updated copy", "query_mode": "remote"}' \
"$AGNES_SERVER_URL/api/admin/registry/<table_id>"
Only fields you include in the JSON body are updated — unspecified fields keep prior values.
Remove a table
curl -sS -X DELETE \
-H "Authorization: Bearer $PAT" \
"$AGNES_SERVER_URL/api/admin/registry/<table_id>"
Returns 204 No Content on success, 404 if the id doesn't exist. The underlying source data is NOT touched — only the catalog entry. Local snapshots created via agnes snapshot create also remain on the analyst's laptop until they agnes snapshot drop them.
Heuristics
- Slug, not display name. When a later command asks for
table_id, use the lower-snake_case form, not the original--name.agnes admin list-tablesshows both columns. - One descriptive line.
--descriptionshows up inagnes catalog --jsonand in agent rails reasoning. Make it count: "What's in this table?" not "Imported 2026-01-15." localvsremoteis permanent until you re-register. Switching modes mid-life requires PUT-ingquery_mode; that doesn't move data, just changes how it's served.- Don't register joins or views you'd rather compute on-the-fly. A registered table is a long-term contract — analysts will write to its name. For one-off computations prefer
agnes query --remote.
When NOT to register
- The user wants to inspect a table once, doesn't intend to share it: register the row once with
query_mode='remote'(admin-only, ~30s) and query it viaagnes query --remote "SELECT … FROM <registered_id>". Directbq."<dataset>"."<table>"syntax is now registry-gated — unregistered paths return 403bq_path_not_registered(closes the pre-existing RBAC + cost-cap bypass). - The data lives in a third source not yet supported by a connector: implement the connector first (see
connectors.mdskill), then register. - The dataset already has a registered "parent" view that exposes the rows you want: register-table is for distinct catalog entities, not for slicing existing ones — slice with
agnes snapshot create --where.
Confirmation flow
After registration, sanity-check:
agnes admin list-tables --json | jq '.[] | select(.id == "<table_id>")'
agnes catalog --json | jq '.tables[] | select(.id == "<table_id>")'
agnes schema <table_id> # forces a real source-side schema fetch — fails fast if source is wrong
If agnes schema 500s on a freshly registered remote BQ table, the most common causes (in order): wrong --source-table (typo), wrong --bucket (dataset), missing data_source.bigquery.billing_project when reading cross-project, missing serviceusage.services.use IAM on the billing project.