feature: mcp + CLI agent references#39
Open
Rodriguespn wants to merge 9 commits intofeature/supabase-skillfrom
Open
feature: mcp + CLI agent references#39Rodriguespn wants to merge 9 commits intofeature/supabase-skillfrom
Rodriguespn wants to merge 9 commits intofeature/supabase-skillfrom
Conversation
Collaborator
Author
|
@sweatybridge commented on closed PR
|
397502e to
d097278
Compare
3fa27bb to
c97bee8
Compare
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. 🗂️ Base branches to auto review (2)
Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing touches🧪 Generate unit tests (beta)
Comment |
c97bee8 to
e26e56a
Compare
* rebase and house keeping * fix: storage reference accuracy after docs review Fix RLS permission mappings, CDN cache behavior, file management limits, image transform descriptions, and S3 upload API signatures based on official Supabase documentation audit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix offset * fix move and copy instructions --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
* rebase and house keeping * fix edge functions reference files after docs review * update agents.mdd
* rebase and house keeping * fix supabase sdk reference files after docs review * update agents.md
* feat: auth agent references * Update skills/supabase/references/auth-core-sessions.md Co-authored-by: Stojan Dimitrovski <sdimitrovski@gmail.com> * refactor: improve auth state management and update session handling examples * docs: update performance note for asymmetric JWTs * fix: correct signOut() default scope to 'global' signOut() defaults to scope: 'global' (all sessions on all devices), not current session only. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: improve signOut() examples to show all three scope options Replace redundant explicit 'global' example with 'local' scope, making all three options (global, local, others) visible. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: flatten auth references to root references directory Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * correct auth hooks * correct auth server ssr * fix auth reference files * fix paths inside skill.md * update agents.md --------- Co-authored-by: Greg Richardson <greg.nmr@gmail.com> Co-authored-by: Stojan Dimitrovski <sdimitrovski@gmail.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Fix unclosed code block in SKILL.md Supabase Documentation section. Update dev-mcp-setup.md to remove security rule about restricting MCP features and add validation-compliant examples. Regenerate AGENTS.md files with new build system structure (H1 title, Overview section). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
e26e56a to
a690112
Compare
5bf5ee3 to
3e05038
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds 17 reference files covering CLI commands, MCP setup, and combined tooling workflows:
cli-*): 8 files covering project, database, migration, functions, secrets, and generation commands. Includes a decision guide (pull vs diff, push vs up) and common gotchas/pitfallsmcp-*): 3 files for MCP server configuration, feature groups, and security considerationstooling-*): 6 files for tool selection (MCP vs CLI), capability overlap, and combined workflows (local dev, migration creation, type generation, function development)Key principle: prefer MCP tools when connected (self-describing schemas), use CLI for local-only operations (
start,stop,reset) and file generation. Includes suggestions from code review (thanks @sweatybridge, @jorgoose). UpdatesSKILL.md,AGENTS.md, and_sections.md.