Skip to main content
Dépôt GitHub

tone

tone contient 52 skills collectées depuis tonehq, avec une couverture métier par dépôt et des pages de détail sur le site.

skills collectés
52
Stars
10
mis à jour
2026-07-16
Forks
3
Couverture métier
13 catégories métier · 100% classifié
explorateur de dépôts

Skills dans ce dépôt

code-review
Analystes en assurance qualité des logiciels et testeurs

Use this skill when the user asks to "review my changes", "code review", "review before commit", "/code-review", or wants SOLID, security, performance, accessibility, or error handling analysis on current git changes. Accepts an optional base branch argument (defaults to main).

2026-07-16
generate-feature-docs
Développeurs web

Generates feature documentation for a Next.js page by analyzing component source, service imports, Jotai atoms, and navigation paths. Output placed in e2e/ux_flow_docs/<page-name>.md and consumed by /generate-tests for comprehensive test coverage.

2026-06-18
generate-tests
Analystes en assurance qualité des logiciels et testeurs

Generates a new Playwright e2e spec file by reading a page component's source code, then runs it. Use when a page has NO existing spec file and you need to create one from scratch.

2026-06-18
test-cases
Analystes en assurance qualité des logiciels et testeurs

Skill for the Test-cases area of tone. 250 symbols across 60 files.

2026-06-03
test-cases
Analystes en assurance qualité des logiciels et testeurs

Generate and maintain pytest test cases for FastAPI endpoints by reading the APIs.md documentation and tracing actual controller/service code. Creates one test file per controller with comprehensive coverage (success, failure, validation, auth, edge cases). Use this skill when the user asks to generate tests, create test cases, write API tests, add pytest coverage, or mentions "test my APIs". Also triggers on "generate tests", "write test cases", "add test coverage", or "pytest for my endpoints".

2026-06-03
create-component
Concepteurs web et d'interfaces numériques

Creates a new shared UI component using shadcn/ui with the project's theme. Handles shadcn setup verification, theme token mapping, and generates production-ready components following project conventions.

2026-05-23
frontend-cards
Développeurs web

Generate a complete card-grid listing page with infinite scroll, search, status filter, create/edit modal, and framer-motion animations for the Tone frontend. Produces a page.tsx with split components — card, grid, skeleton, and form modal — following the test-profiles page pattern.

2026-05-23
frontend-forms
Développeurs web

Generate create/edit forms for the Tone frontend. Supports three layout modes — modal, drawer, and page — chosen based on form complexity or user preference. Reads FORM metadata JSON (from [[backend_form]]) or inspects the backend model directly. Produces the form component, Zod schema, API mutation hook, and wires it into the parent page.

2026-05-23
backend-form
Architectes de bases de données

Analyze a codebase (backend schema + frontend code) and emit FORM metadata JSON for entities that exist in the DB but DO NOT yet have a frontend create/edit UI. Pairs with [[backend_tables]]. Decides layout (page / drawer / modal / stepper) based on entity complexity, derived from the actual schema. Always asks the user where the backend and frontend live before scanning. Produces ONLY metadata — never database models, never migrations, never API endpoints. Fully project-agnostic; nothing hardcoded.

2026-05-23
backend-tables
Architectes de bases de données

Analyze a codebase (backend schema + frontend code) and emit TABLE metadata JSON for entities that exist in the DB but DO NOT yet have a frontend listing UI. Pairs with [[backend_form]]. Always asks the user where the backend and frontend live before scanning. Produces ONLY metadata — never database models, never migrations, never API endpoints. Fully project-agnostic; nothing hardcoded.

2026-05-23
card-page
Développeurs de logiciels

Create a complete card-grid listing page — both backend API endpoint and frontend UI — for any entity in the Tone platform. Orchestrates the backend_tables and frontend_cards skills in sequence. One command generates the POST /list endpoint with search, filter, sort, pagination, plus the Next.js card-grid page with infinite scroll, search, status filter, create/edit modal, and framer-motion animations.

2026-05-23
form-page
Développeurs de logiciels

Create a complete create/edit form — both backend API endpoint and frontend UI — for any entity in the Tone platform. Orchestrates the backend_form and frontend_forms skills. User specifies layout mode (modal, drawer, or page) or it auto-detects from field count. Generates the backend create/update endpoints, Zod schema, API mutation hooks, and the form UI.

2026-05-23
frontend-tables
Développeurs web

Generate a complete table listing page with server-side filtering, sorting, and pagination for the Tone frontend. Uses the CustomTable component (TanStack React Table) with ColumnDef-based columns, server-side sorting, sticky columns, infinite scroll or classic pagination. Reads TABLE metadata JSON (from [[backend_tables]]) or inspects the backend API directly to derive column keys, filter options, and sort fields.

2026-05-23
generate-feature-prd-and-implementation
Analystes des systèmes informatiques

Interactively author or update a Feature PRD for the Tone-Test platform. Walks the user section-by-section through requirements, edge cases, test cases, DB schema, API design, backend (controllers + services), frontend (routes + components), and Postman examples. Emits ONE artifact — a team-readable Markdown PRD at `docs/features/<feature-slug>.md`. On re-invocation against an existing feature, detects the prior PRD, asks which sections to update, merges, and appends a dated entry to the Change Log. Always ends with a "Next steps" block linking to downstream code-gen skills ([[implement_feature_from_prd]], [[table_page]], [[form_page]], [[backend_form]], [[backend_tables]], [[frontend_forms]], [[frontend_tables]], [[frontend_cards]]) — those skills read the PRD as their input.

2026-05-23
implement-feature-from-prd
Développeurs de logiciels

Top-level orchestrator that reads a Feature PRD at `docs/features/<slug>.md` and runs the right downstream code-gen skills (backend_form, backend_tables, form_page, table_page, frontend_forms, frontend_tables, frontend_cards) in the correct order to scaffold a feature end-to-end. Inspects the PRD's Section 6 (DB schema), Section 7 (API design), Section 8 (backend), and Section 9 (frontend) to decide what to generate — create/edit endpoints + form UI, list endpoints + table or card UI, or both. Surfaces any "⚠ Conventions Check" flags from the PRD before running and confirms with the user. Always runs `/generate_feature_prd_and_implementation` first if no PRD exists for the requested slug. Output is generated code in `backend/app/`, `frontend/app/`, `frontend/lib/`, plus a checklist of manual follow-ups (Alembic migration, Postman updates, integration tests).

2026-05-23
table-page
Développeurs de logiciels

Create a complete table listing page — both backend API endpoint and frontend UI — for any entity in the Tone platform. Orchestrates the backend_tables and frontend_tables skills in sequence. One command generates the POST /list endpoint with search, filter, sort, pagination, plus the Next.js page with CustomTable, SearchBar, filters, bulk delete, and page size selector.

2026-05-23
provisioning-cluster
Administrateurs de réseaux et de systèmes informatiques

Provision a Vultr Kubernetes Engine (VKE) cluster with node pools and add-ons. Interactively collects all configuration from the user via AskUserQuestion, then executes the provisioning commands via Bash tool. Use when setting up a new Kubernetes cluster or when the user asks to create/provision a cluster.

2026-05-14
provisioning-environment
Administrateurs de réseaux et de systèmes informatiques

Complete end-to-end environment provisioning — Neon database + Infisical secrets + Kubernetes cluster + manifests + CI/CD + migrations. Single skill that does everything. Supports Vultr (now) and DigitalOcean (future).

2026-05-14
provisioning-db
Administrateurs de réseaux et de systèmes informatiques

Provision a new Neon database and configure Infisical secrets for a deployment environment. Use when setting up a new environment that needs a database (e.g., after running /setup-new-deployment) or when the user asks to create a database, provision DB, or set up Infisical secrets for an environment.

2026-05-13
setup-new-deployment
Administrateurs de réseaux et de systèmes informatiques

End-to-end setup for a new deployment environment. Use when the user wants to set up a complete new deployment (e.g., 'set up staging', 'create production deployment', 'add a new environment'). Creates a Git branch, generates Kubernetes manifests (via generate_kubernetes_deployment), and generates GitHub Actions workflow (via generate_github_actions_file). Invoked as /setup_new_deployment.

2026-05-13
grill-me
Spécialistes en gestion de projets

Interview me relentlessly about every aspect of this plan until we reach a shared understanding. Walk down each branch of the design tree, resolving dependencies between decisions one-by-one.

2026-05-12
generate-kubernetes-deployment
Administrateurs de réseaux et de systèmes informatiques

Generate Kubernetes deployment manifests for a new environment. Use when setting up a new deployment environment (dev, staging, production, etc.) that needs Kubernetes manifests for the Tone application. Generates organized manifests under build/kubernetes/{env}/ with api/ and call/ subdirectories. Can also be called by the setup_new_deployment parent skill.

2026-05-12
generate-github-actions-file
Administrateurs de réseaux et de systèmes informatiques

Generate GitHub Actions CI/CD workflow YAML for a new deployment environment. Use when setting up a new environment that needs a GitHub Actions pipeline for building Docker images and deploying to Kubernetes (Azure AKS or GCP GKE). Can also be called by the setup_new_deployment parent skill.

2026-05-12
postman-collection-generator
Développeurs web

Generate and maintain Postman collections from FastAPI route files. Use when the user asks to create Postman collections, export APIs to Postman, update Postman collections, or sync API changes to Postman format. Triggers on requests mentioning "Postman", "API collection", or "export APIs".

2026-04-10
aggregators
Développeurs de logiciels

Skill for the Aggregators area of tone. 161 symbols across 28 files.

2026-04-09
cartesia
Développeurs de logiciels

Skill for the Cartesia area of tone. 347 symbols across 72 files.

2026-04-09
daily
Écrivains et auteurs

Skill for the Daily area of tone. 183 symbols across 26 files.

2026-04-09
foundational
Écrivains et auteurs

Skill for the Foundational area of tone. 1237 symbols across 347 files.

2026-04-09
frames
Développeurs de logiciels

Skill for the Frames area of tone. 94 symbols across 34 files.

2026-04-09
frameworks
Développeurs de logiciels

Skill for the Frameworks area of tone. 108 symbols across 9 files.

2026-04-09
google
Développeurs de logiciels

Skill for the Google area of tone. 76 symbols across 31 files.

2026-04-09
heygen
Développeurs de logiciels

Skill for the Heygen area of tone. 70 symbols across 7 files.

2026-04-09
openai-realtime-beta
Développeurs de logiciels

Skill for the Openai_realtime_beta area of tone. 102 symbols across 15 files.

2026-04-09
pipeline
Développeurs de logiciels

Skill for the Pipeline area of tone. 85 symbols across 30 files.

2026-04-09
processors
Développeurs de logiciels

Skill for the Processors area of tone. 145 symbols across 69 files.

2026-04-09
realtime
Développeurs de logiciels

Skill for the Realtime area of tone. 194 symbols across 26 files.

2026-04-09
scripts
Développeurs de logiciels

Skill for the Scripts area of tone. 77 symbols across 14 files.

2026-04-09
services
Développeurs de logiciels

Skill for the Services area of tone. 447 symbols across 133 files.

2026-04-09
smallwebrtc
Développeurs de logiciels

Skill for the Smallwebrtc area of tone. 108 symbols across 26 files.

2026-04-09
tests
Rédacteurs en chef

Skill for the Tests area of tone. 654 symbols across 147 files.

2026-04-09
Affichage des 40 principaux skills collectés sur 52 dans ce dépôt.