Usage
Resolve a driver and call a resource action:
php
use Sanvex\Core\SanvexManager;
public function repos(SanvexManager $manager)
{
return $manager->resolveDriver('github')
->repositories()
->list(['per_page' => 10]);
}Multi-tenancy
php
$notion = $manager->for(auth()->user())->resolveDriver('notion');
$pages = $notion->pages()->list(['page_size' => 10]);MCP (optional)
bash
php artisan sanvex:mcp-stdioTypical workflow
- Add or update docs for new drivers and operations
- Publish docs (GitHub Pages or Vercel)
- Test agent flows against real credentials in staging
- Refine examples based on support questions
