Agent skill · Backend & API

bknd-api-discovery

Use when exploring Bknd's auto-generated API endpoints. Covers REST endpoint patterns, route listing, module base paths, SDK method mapping, admin panel API explorer, and understanding the API structure.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill bknd-api-discovery-cameronapak-freedom-stack-v3-2 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 12 KB
Bundled scripts: none
Path: skills/api/bknd-api-discovery-cameronapak-freedom-stack-v3-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# API Discovery Explore and understand Bknd's auto-generated REST API endpoints. ## Prerequisites - Running Bknd instance (local or deployed) - Access to admin panel (optional but helpful) - Basic understanding of REST APIs ## When to Use UI Mode - Browsing available entities and their fields - Viewing schema structure visually - Quick endpoint exploration via browser **UI steps:** Admin Panel > Data > Entities ## When to Use Code Mode - Listing all registered routes programmatically - Understanding endpoint patterns for integration - Debugging route registration issues - Building API documentation ## Understanding Bknd's API Structure Bknd auto-generates REST endpoints for all configured modules: ``` ┌─────────────────────────────────────────────────────────────┐ │ Bknd API Structure │ ├─────────────────────────────────────────────────────────────┤ │ /api/data → CRUD for all entities │ │ /api/auth → Authentication (login, register, logout) │ │ /api/media → File uploads and serving │ │ /api/system → System operations │ │ /flow → Flow management and triggers │ │ /admin → Admin UI (if enabled) │ └─────────────────────────────────────────────────────────────┘ ``` ## Code Approach ###

What's inside
Steps it walks through
  1. Prerequisites
  2. When to Use UI Mode
  3. When to Use Code Mode
  4. Understanding Bknd's API Structure
  5. Code Approach
  6. Step 1: List All Routes (CLI)
  7. Step 2: Data API Endpoints
  8. Step 3: Auth API Endpoints
  9. Step 4: Media API Endpoints
  10. Step 5: Flow Endpoints
  11. Step 6: Programmatic Route Discovery
  12. Step 7: Discover Entity Schema
  13. Step 8: Response Format Discovery
  14. UI Approach: Admin Panel
Ships with 1 file
  • metadata.json
Commands it runs
bknd debug routes
List all posts
curl http://localhost:7654/api/data/posts
Get post by ID
curl http://localhost:7654/api/data/posts/1
Get with query params
curl "http://localhost:7654/api/data/posts?limit=10&sort[created_at]=desc"
Get with relations
curl "http://localhost:7654/api/data/posts?with[]=author&with[]=comments"
Complex query via POST
More from claude-skill-registry
All skills →
About this skill
What does the bknd-api-discovery skill do?

Use when exploring Bknd's auto-generated API endpoints. Covers REST endpoint patterns, route listing, module base paths, SDK method mapping, admin panel API explorer, and understanding the API structure.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill bknd-api-discovery-cameronapak-freedom-stack-v3-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going