@youtyan/code-viewer 0.6.8 → 0.6.10
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 +14 -2
- package/dist/code-viewer.js +792 -183
- package/package.json +1 -1
- package/skills/code-viewer-query/SKILL.md +3 -1
- package/web/app.js +302 -121
- package/web/style.css +3 -0
package/package.json
CHANGED
|
@@ -39,7 +39,9 @@ browser's Database > Search tab, so the human can review the same workflow.
|
|
|
39
39
|
1. Discover the datastore ids the running server has detected. This is the
|
|
40
40
|
AI-friendly equivalent of opening the browser's Database tab and reading
|
|
41
41
|
the sidebar — it lists every SQLite file plus PostgreSQL / MySQL / Redis
|
|
42
|
-
/ Elasticsearch / S3 service that any nearby `docker-compose` exposes
|
|
42
|
+
/ Elasticsearch / S3 service that any nearby `docker-compose` exposes, as
|
|
43
|
+
well as any local Supabase CLI (`supabase start`) project found via a
|
|
44
|
+
`supabase/config.toml` (id form `supabase:<project_id>`).
|
|
43
45
|
Use the printed `id` as `--db` on every other command. Credentials and
|
|
44
46
|
internal config are stripped server-side.
|
|
45
47
|
|