heyeddi-com/heyeddi-skills

backend-type-bridger

Syncs a local FastAPI OpenAPI file to TypeScript types and reads Firestore schema hints. Use when writing Vue composables against FastAPI or Firebase backends.

First seen Jul 6, 2026

Installation

$ npx skills add heyeddi-com/heyeddi-skills --skill backend-type-bridger

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from heyeddi-com/heyeddi-skills · top by installs.

npx skills add heyeddi-com/heyeddi-skills

Browse all from heyeddi-com/heyeddi-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,196 B
  • docs SUMMARY.md 187 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 69 installs

SKILL.md

Backend Type Bridger

When to use

  • Frontend agent needs accurate API payload shapes
  • Local openapi.json (or another OpenAPI file under the project root)
  • Firestore rules or schema file exists for Firebase projects

Instructions

  1. Ensure a local OpenAPI file at openapi.json (project root). Prefer the scaffolded file. If the API is running and the file is missing/stale, export to disk first (do not pass a URL into this skill):

``bash curl -fsS http://127.0.0.1:8090/openapi.json -o openapi.json ``

  1. FastAPI types: python scripts/sync_openapi.py --project-root <root> — writes src/types/api.ts from local openapi.json only (optional --openapi path/rel.json).
  1. Firebase: python scripts/fetchfirestoreschema.py --project-root <root>
  1. Import generated types in composables — never guess field names. Refine generated interfaces if OpenAPI uses $ref heavily.