veloxts

Guide building VeloxTS full-stack TypeScript APIs with procedures, generators, and REST routing.

2|Updated Dec 4, 2025
One-click install
npx skills add https://github.com/veloxts/velox-ts-framework --skill veloxts
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: veloxts
Source: https://github.com/veloxts/velox-ts-framework/tree/main/packages/create/src/templates/source/root/.claude/skills/veloxts
Command: npx skills add https://github.com/veloxts/velox-ts-framework --skill veloxts

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

VeloxTS framework assistant helps developers design and implement type-safe full-stack TypeScript APIs by guiding on procedures, generators (velox make), REST route inferences, authentication, and validation. It provides clear patterns to accelerate endpoint creation, feature expansion, debugging, and learning VeloxTS conventions.

Core Features & Use Cases

  • Guidance on creating API endpoints (procedures) and composing them into routers.
  • Help with code generation commands (velox make resource, namespace, procedure, etc.) and quick-start examples.
  • REST route inference from naming conventions and context about authentication/guards and validation.
  • Troubleshooting references and common patterns for debugging VeloxTS applications.

Quick Start

Use VeloxTS to scaffold resources or single endpoints:

  • Create a full resource: velox make resource Post
  • Add a namespace for an existing Prisma model: velox make namespace Order
  • Create a quick single endpoint: velox make procedure health

Frequently Asked Questions about veloxts

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build a full-stack TypeScript API using procedures and generators?

Scaffold TypeScript API endpoints using velox make commands like 'velox make resource Post' to generate full resources, or 'velox make procedure health' for single endpoints, then compose them into routers.

How does REST route inference work from naming conventions in TypeScript APIs?

REST route inference maps TypeScript procedure naming conventions to HTTP endpoints automatically, applying authentication guards and validation rules during router composition.

What is the best way to scaffold a new API resource with Prisma models in TypeScript?

Use 'velox make namespace Order' to add an API namespace for an existing Prisma model, generating type-safe procedures and router integration without manual endpoint boilerplate.

Why is my VeloxTS API endpoint not working and how do I troubleshoot it?

Troubleshoot VeloxTS endpoint failures by checking procedure composition, REST route naming conventions, and validation rules, using the framework's debugging references and common patterns.

Can I use velox make commands to add authentication and validation to existing API endpoints?

Yes, velox make commands scaffold procedures that support authentication guards and validation, which are integrated during REST route inference when composing endpoints into routers.