@punks/cli 0.1.16 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +10 -0
- package/README.md +64 -0
- package/dist/data/AGENTS.md +123 -0
- package/dist/data/catalog/lint.ts +349 -0
- package/dist/data/catalog/packs.ts +44 -0
- package/dist/data/catalog/skills.ts +47 -0
- package/dist/data/catalog/tools.ts +22 -0
- package/dist/data/hooks/format-edited-file.mjs +554 -0
- package/dist/data/hooks/format-edited-file.py +157 -0
- package/dist/data/hooks/format-edited-file.sh +37 -0
- package/dist/data/hooks/require-tests-for-pr.mjs +144 -0
- package/dist/data/scripts/sync-subagents.mjs +420 -0
- package/dist/data/subagents/manifest.mjs +253 -0
- package/dist/index.js +46415 -0
- package/dist/skills/agnostic/backend/backend-domain-structure/SKILL.md +50 -0
- package/dist/skills/agnostic/backend/backend-domain-structure/agents/openai.yaml +4 -0
- package/dist/skills/agnostic/backend/backend-domain-structure/references/layout.md +167 -0
- package/dist/skills/agnostic/backend/backend-recoverable-actions/SKILL.md +49 -0
- package/dist/skills/agnostic/backend/backend-recoverable-actions/agents/openai.yaml +4 -0
- package/dist/skills/agnostic/backend/backend-recoverable-actions/references/strategy-matrix.md +34 -0
- package/dist/skills/agnostic/backend/backend-recoverable-actions/references/test-matrix.md +34 -0
- package/dist/skills/agnostic/docs/docs-maintenance/SKILL.md +193 -0
- package/dist/skills/agnostic/docs/docs-maintenance/agents/openai.yaml +4 -0
- package/dist/skills/agnostic/docs/docs-maintenance/references/concept-pages.md +48 -0
- package/dist/skills/agnostic/docs/docs-maintenance/references/flow-pages.md +41 -0
- package/dist/skills/agnostic/frontend/agent-browser/.clawdhub/origin.json +7 -0
- package/dist/skills/agnostic/frontend/agent-browser/SKILL.md +229 -0
- package/dist/skills/agnostic/frontend/agent-browser/references/authentication.md +202 -0
- package/dist/skills/agnostic/frontend/agent-browser/references/commands.md +259 -0
- package/dist/skills/agnostic/frontend/agent-browser/references/proxy-support.md +188 -0
- package/dist/skills/agnostic/frontend/agent-browser/references/session-management.md +193 -0
- package/dist/skills/agnostic/frontend/agent-browser/references/snapshot-refs.md +194 -0
- package/dist/skills/agnostic/frontend/agent-browser/references/video-recording.md +173 -0
- package/dist/skills/agnostic/frontend/agent-browser/templates/authenticated-session.sh +97 -0
- package/dist/skills/agnostic/frontend/agent-browser/templates/capture-workflow.sh +69 -0
- package/dist/skills/agnostic/frontend/agent-browser/templates/form-automation.sh +62 -0
- package/dist/skills/agnostic/frontend/design-taste-frontend/SKILL.md +226 -0
- package/dist/skills/agnostic/frontend/frontend-domain-structure/SKILL.md +55 -0
- package/dist/skills/agnostic/frontend/frontend-domain-structure/agents/openai.yaml +4 -0
- package/dist/skills/agnostic/frontend/frontend-domain-structure/references/react/structure.md +102 -0
- package/dist/skills/agnostic/frontend/frontend-domain-structure/references/structure.md +257 -0
- package/dist/skills/agnostic/frontend/gpt-taste/SKILL.md +74 -0
- package/dist/skills/agnostic/frontend/image-taste-frontend/SKILL.md +1102 -0
- package/dist/skills/agnostic/frontend/redesign-existing-projects/SKILL.md +178 -0
- package/dist/skills/agnostic/planning/create-plan/REFERENCE.md +37 -0
- package/dist/skills/agnostic/planning/create-plan/SKILL.md +69 -0
- package/dist/skills/agnostic/planning/create-plan/references/backlog-sync.md +44 -0
- package/dist/skills/agnostic/planning/create-plan/references/grill-phase.md +86 -0
- package/dist/skills/agnostic/planning/create-plan/references/plan-schema.md +66 -0
- package/dist/skills/agnostic/planning/create-plan/references/planner-phase.md +39 -0
- package/dist/skills/agnostic/planning/create-plan/references/stop-conditions.md +18 -0
- package/dist/skills/agnostic/planning/create-plan/references/tdd-phase.md +26 -0
- package/dist/skills/agnostic/planning/create-spec/SKILL.md +57 -0
- package/dist/skills/agnostic/planning/create-spec/assets/SPEC-TEMPLATE.md +91 -0
- package/dist/skills/agnostic/planning/create-spec/references/discovery.md +44 -0
- package/dist/skills/agnostic/planning/create-spec/references/folder-naming.md +27 -0
- package/dist/skills/agnostic/planning/create-spec/references/handoff.md +47 -0
- package/dist/skills/agnostic/planning/create-spec/references/questioning.md +41 -0
- package/dist/skills/agnostic/planning/create-spec/references/spec-quality-bar.md +58 -0
- package/dist/skills/agnostic/planning/create-spec/references/wiki-bookkeeping.md +26 -0
- package/dist/skills/agnostic/planning/grill-me/SKILL.md +28 -0
- package/dist/skills/agnostic/planning/implement-spec/SKILL.md +72 -0
- package/dist/skills/agnostic/planning/implement-spec/assets/IMPLEMENTATION-NOTES-TEMPLATE.md +47 -0
- package/dist/skills/agnostic/planning/implement-spec/references/lifecycle.md +149 -0
- package/dist/skills/agnostic/planning/implement-spec/references/parallel-orchestration.md +102 -0
- package/dist/skills/agnostic/planning/implement-spec/references/parallel-worker-brief.md +65 -0
- package/dist/skills/agnostic/planning/implement-spec/references/parallel.md +56 -0
- package/dist/skills/agnostic/planning/implement-spec/references/sequential.md +28 -0
- package/dist/skills/agnostic/planning/swarm-planner/SKILL.md +179 -0
- package/dist/skills/agnostic/quality/simplify/SKILL.md +14 -0
- package/dist/skills/agnostic/quality/tdd/SKILL.md +107 -0
- package/dist/skills/agnostic/quality/tdd/deep-modules.md +33 -0
- package/dist/skills/agnostic/quality/tdd/interface-design.md +31 -0
- package/dist/skills/agnostic/quality/tdd/mocking.md +59 -0
- package/dist/skills/agnostic/quality/tdd/refactoring.md +10 -0
- package/dist/skills/agnostic/quality/tdd/tests.md +61 -0
- package/dist/skills/agnostic/requirements/requirements-grill/SKILL.md +42 -0
- package/dist/skills/agnostic/requirements/requirements-grill/references/artifact-output.md +73 -0
- package/dist/skills/agnostic/requirements/requirements-grill/references/grilling-flow.md +57 -0
- package/dist/skills/agnostic/requirements/requirements-grill/references/wiki-output.md +94 -0
- package/dist/skills/agnostic/requirements/write-backlog/EXAMPLES.md +67 -0
- package/dist/skills/agnostic/requirements/write-backlog/REFERENCE.md +253 -0
- package/dist/skills/agnostic/requirements/write-backlog/SKILL.md +68 -0
- package/dist/skills/agnostic/requirements/write-backlog/assets/concepts/backlog-model.md +69 -0
- package/dist/skills/agnostic/requirements/write-backlog/assets/concepts/story-shape.md +66 -0
- package/dist/skills/agnostic/requirements/write-backlog/assets/providers/azure-devops-create-payload.md +63 -0
- package/dist/skills/agnostic/requirements/write-backlog/assets/providers/github-issues-create-payload.md +48 -0
- package/dist/skills/agnostic/requirements/write-backlog/assets/providers/linear-create-payload.md +76 -0
- package/dist/skills/agnostic/research/improve-codebase-architecture/REFERENCE.md +78 -0
- package/dist/skills/agnostic/research/improve-codebase-architecture/SKILL.md +76 -0
- package/dist/skills/agnostic/research/parallel-research/SKILL.md +68 -0
- package/dist/skills/agnostic/research/parallel-research/agents/openai.yaml +4 -0
- package/dist/skills/agnostic/subagents/swarm-planner/SKILL.md +179 -0
- package/dist/skills/agnostic/write-a-skill/SKILL.md +117 -0
- package/dist/skills/frameworks/better-auth/better-auth-best-practices/SKILL.md +166 -0
- package/dist/skills/frameworks/better-auth/better-auth-security-best-practices/SKILL.MD +432 -0
- package/dist/skills/frameworks/effect/effect-authoring/SKILL.md +116 -0
- package/dist/skills/frameworks/effect/effect-authoring/references/branded-types.md +98 -0
- package/dist/skills/frameworks/effect/effect-authoring/references/effect-atom-patterns.md +257 -0
- package/dist/skills/frameworks/effect/effect-authoring/references/effect-primitives.md +144 -0
- package/dist/skills/frameworks/effect/effect-authoring/references/error-patterns.md +156 -0
- package/dist/skills/frameworks/effect/effect-authoring/references/otel-patterns.md +113 -0
- package/dist/skills/frameworks/effect/effect-authoring/references/test-patterns.md +146 -0
- package/dist/skills/frameworks/effect/effect-backend-structure/SKILL.md +96 -0
- package/dist/skills/frameworks/effect/effect-backend-structure/agents/openai.yaml +4 -0
- package/dist/skills/frameworks/effect/effect-backend-structure/references/layout.md +68 -0
- package/dist/skills/frameworks/effect/effect-best-practices/SKILL.md +517 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/anti-patterns.md +392 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/effect-atom-patterns.md +653 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/error-patterns.md +464 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/language-server.md +287 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/layer-patterns.md +495 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/observability-patterns.md +342 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/rpc-cluster-patterns.md +418 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/schema-patterns.md +353 -0
- package/dist/skills/frameworks/effect/effect-best-practices/references/service-patterns.md +299 -0
- package/dist/skills/frameworks/effect/effect-recoverable-actions/SKILL.md +65 -0
- package/dist/skills/frameworks/effect/effect-recoverable-actions/agents/openai.yaml +4 -0
- package/dist/skills/frameworks/effect/effect-recoverable-actions/references/flow-examples.md +154 -0
- package/dist/skills/frameworks/effect/effect-recoverable-actions/references/source-backed-primitives.md +104 -0
- package/dist/skills/frameworks/effect/effect-recoverable-actions/references/strategy-matrix.md +34 -0
- package/dist/skills/frameworks/effect/effect-recoverable-actions/references/test-matrix.md +36 -0
- package/dist/skills/frameworks/elysia/elysiajs/SKILL.md +475 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/basic.ts +9 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/body-parser.ts +33 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/complex.ts +112 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/cookie.ts +45 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/error.ts +38 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/file.ts +10 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/guard.ts +34 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/map-response.ts +15 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/redirect.ts +6 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/rename.ts +32 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/schema.ts +61 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/state.ts +6 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/upload-file.ts +20 -0
- package/dist/skills/frameworks/elysia/elysiajs/examples/websocket.ts +25 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/ai-sdk.md +92 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/astro.md +59 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/better-auth.md +117 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/cloudflare-worker.md +95 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/deno.md +34 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/drizzle.md +258 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/expo.md +95 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/nextjs.md +103 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/nodejs.md +64 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/nuxt.md +67 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/prisma.md +93 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/react-email.md +134 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/sveltekit.md +53 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/tanstack-start.md +87 -0
- package/dist/skills/frameworks/elysia/elysiajs/integrations/vercel.md +55 -0
- package/dist/skills/frameworks/elysia/elysiajs/patterns/mvc.md +380 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/bearer.md +30 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/cors.md +141 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/cron.md +265 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/graphql-apollo.md +90 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/graphql-yoga.md +87 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/html.md +188 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/jwt.md +197 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/openapi.md +246 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/opentelemetry.md +167 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/server-timing.md +71 -0
- package/dist/skills/frameworks/elysia/elysiajs/plugins/static.md +84 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/bun-fullstack-dev-server.md +129 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/cookie.md +187 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/deployment.md +413 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/eden.md +158 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/lifecycle.md +198 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/macro.md +83 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/plugin.md +207 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/route.md +331 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/testing.md +385 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/validation.md +491 -0
- package/dist/skills/frameworks/elysia/elysiajs/references/websocket.md +250 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/.github/workflows/branch-protection.yml +24 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/.github/workflows/deploy.yml +61 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/AGENTS.md +5958 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/SKILL.md +130 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/api-use-dto-serialization.md +182 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/api-use-interceptors.md +202 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/api-use-pipes.md +205 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/api-versioning.md +191 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-avoid-circular-deps.md +80 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-feature-modules.md +82 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-module-sharing.md +141 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-single-responsibility.md +106 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-use-events.md +108 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/arch-use-repository-pattern.md +97 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/db-avoid-n-plus-one.md +139 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/db-use-migrations.md +129 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/db-use-transactions.md +140 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/devops-graceful-shutdown.md +222 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/devops-use-config-module.md +167 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/devops-use-logging.md +232 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-avoid-service-locator.md +104 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-interface-segregation.md +165 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-liskov-substitution.md +221 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-prefer-constructor-injection.md +86 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-scope-awareness.md +94 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/di-use-interfaces-tokens.md +101 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/error-handle-async-errors.md +125 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/error-throw-http-exceptions.md +114 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/error-use-exception-filters.md +140 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/micro-use-health-checks.md +226 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/micro-use-patterns.md +167 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/micro-use-queues.md +252 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/perf-async-hooks.md +109 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/perf-lazy-loading.md +121 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/perf-optimize-database.md +131 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/perf-use-caching.md +128 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/security-auth-jwt.md +146 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/security-rate-limiting.md +125 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/security-sanitize-output.md +139 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/security-use-guards.md +135 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/security-validate-all-input.md +150 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/test-e2e-supertest.md +178 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/test-mock-external-services.md +179 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/rules/test-use-testing-module.md +153 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/scripts/build-agents.ts +299 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/scripts/build.sh +16 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/scripts/package-lock.json +237 -0
- package/dist/skills/frameworks/nestjs/nestjs-best-practices/scripts/package.json +15 -0
- package/dist/skills/frameworks/nestjs/nestjs-expert/SKILL.md +208 -0
- package/dist/skills/frameworks/nestjs/nestjs-expert/references/authentication.md +166 -0
- package/dist/skills/frameworks/nestjs/nestjs-expert/references/controllers-routing.md +111 -0
- package/dist/skills/frameworks/nestjs/nestjs-expert/references/dtos-validation.md +153 -0
- package/dist/skills/frameworks/nestjs/nestjs-expert/references/migration-from-express.md +1237 -0
- package/dist/skills/frameworks/nestjs/nestjs-expert/references/services-di.md +140 -0
- package/dist/skills/frameworks/nestjs/nestjs-expert/references/testing-patterns.md +186 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/SKILL.md +153 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/async-patterns.md +87 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/bundling.md +180 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/data-patterns.md +297 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/debug-tricks.md +105 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/directives.md +73 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/error-handling.md +227 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/file-conventions.md +140 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/font.md +245 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/functions.md +108 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/hydration-error.md +91 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/image.md +173 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/metadata.md +301 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/parallel-routes.md +287 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/route-handlers.md +146 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/rsc-boundaries.md +159 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/runtime-selection.md +39 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/scripts.md +141 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/self-hosting.md +371 -0
- package/dist/skills/frameworks/nextjs/next-best-practices/suspense-boundaries.md +67 -0
- package/dist/skills/frameworks/nextjs/next-cache-components/SKILL.md +360 -0
- package/dist/skills/frameworks/react/async-react-patterns/SKILL.md +78 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/AGENTS.md +946 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/SKILL.md +89 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/rules/architecture-avoid-boolean-props.md +100 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/rules/architecture-compound-components.md +112 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/rules/patterns-children-over-render-props.md +87 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/rules/patterns-explicit-variants.md +100 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/rules/react19-no-forwardref.md +42 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/rules/state-context-interface.md +191 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/rules/state-decouple-implementation.md +113 -0
- package/dist/skills/frameworks/react/vercel-composition-patterns/rules/state-lift-state.md +125 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/AGENTS.md +3750 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/SKILL.md +148 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/advanced-effect-event-deps.md +56 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/advanced-event-handler-refs.md +55 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/advanced-init-once.md +42 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/advanced-use-latest.md +39 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-api-routes.md +38 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-cheap-condition-before-await.md +37 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-defer-await.md +82 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-dependencies.md +51 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-parallel.md +28 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/async-suspense-boundaries.md +99 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/bundle-barrel-imports.md +60 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/bundle-conditional.md +31 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/bundle-defer-third-party.md +49 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/bundle-dynamic-imports.md +35 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/bundle-preload.md +50 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/client-event-listeners.md +74 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/client-localstorage-schema.md +71 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/client-passive-event-listeners.md +48 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/client-swr-dedup.md +56 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-batch-dom-css.md +107 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-cache-function-results.md +80 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-cache-property-access.md +28 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-cache-storage.md +70 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-combine-iterations.md +32 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-early-exit.md +50 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-flatmap-filter.md +60 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-hoist-regexp.md +45 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-index-maps.md +37 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-length-check-first.md +49 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-min-max-loop.md +82 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-request-idle-callback.md +105 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-set-map-lookups.md +24 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/js-tosorted-immutable.md +57 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-activity.md +26 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-conditional-render.md +40 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-content-visibility.md +38 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-hoist-jsx.md +46 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-hydration-suppress-warning.md +30 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-resource-hints.md +85 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-script-defer-async.md +68 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-svg-precision.md +28 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rendering-usetransition-loading.md +75 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-defer-reads.md +39 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-dependencies.md +45 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-derived-state-no-effect.md +40 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-derived-state.md +29 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-functional-setstate.md +74 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-lazy-state-init.md +58 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-memo-with-default-value.md +38 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-memo.md +44 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-move-effect-to-event.md +45 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-no-inline-components.md +82 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-simple-expression-in-memo.md +35 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-split-combined-hooks.md +64 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-transitions.md +40 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-use-deferred-value.md +59 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/rerender-use-ref-transient-values.md +73 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-after-nonblocking.md +73 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-auth-actions.md +96 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-cache-lru.md +41 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-cache-react.md +76 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-dedup-props.md +65 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-hoist-static-io.md +149 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-no-shared-module-state.md +50 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-parallel-fetching.md +83 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-parallel-nested-fetching.md +34 -0
- package/dist/skills/frameworks/react/vercel-react-best-practices/rules/server-serialization.md +38 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/.claude-plugin/plugin.json +12 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/SKILL.md +1058 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/assets/example-template.txt +14 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/references/best-practices.md +304 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/references/common-patterns.md +271 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/references/example-reference.md +26 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/references/testing.md +282 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/references/top-errors.md +332 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/references/typescript-patterns.md +291 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/references/v4-to-v5-migration.md +231 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/rules/tanstack-query.md +126 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/scripts/example-script.sh +15 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/custom-hooks-pattern.tsx +281 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/devtools-setup.tsx +248 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/error-boundary.tsx +243 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/package.json +31 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/provider-setup.tsx +50 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/query-client-config.ts +72 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/use-infinite-query.tsx +214 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/use-mutation-basic.tsx +201 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/use-mutation-optimistic.tsx +234 -0
- package/dist/skills/frameworks/tanstack-query/tanstack-query/templates/use-query-basic.tsx +119 -0
- package/dist/skills/frameworks/trpc/tanstack-query/.claude-plugin/plugin.json +12 -0
- package/dist/skills/frameworks/trpc/tanstack-query/SKILL.md +1058 -0
- package/dist/skills/frameworks/trpc/tanstack-query/assets/example-template.txt +14 -0
- package/dist/skills/frameworks/trpc/tanstack-query/references/best-practices.md +304 -0
- package/dist/skills/frameworks/trpc/tanstack-query/references/common-patterns.md +271 -0
- package/dist/skills/frameworks/trpc/tanstack-query/references/example-reference.md +26 -0
- package/dist/skills/frameworks/trpc/tanstack-query/references/testing.md +282 -0
- package/dist/skills/frameworks/trpc/tanstack-query/references/top-errors.md +332 -0
- package/dist/skills/frameworks/trpc/tanstack-query/references/typescript-patterns.md +291 -0
- package/dist/skills/frameworks/trpc/tanstack-query/references/v4-to-v5-migration.md +231 -0
- package/dist/skills/frameworks/trpc/tanstack-query/rules/tanstack-query.md +126 -0
- package/dist/skills/frameworks/trpc/tanstack-query/scripts/example-script.sh +15 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/custom-hooks-pattern.tsx +281 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/devtools-setup.tsx +248 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/error-boundary.tsx +243 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/package.json +31 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/provider-setup.tsx +50 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/query-client-config.ts +72 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/use-infinite-query.tsx +214 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/use-mutation-basic.tsx +201 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/use-mutation-optimistic.tsx +234 -0
- package/dist/skills/frameworks/trpc/tanstack-query/templates/use-query-basic.tsx +119 -0
- package/dist/skills/frameworks/turborepo/turborepo/SKILL.md +914 -0
- package/dist/skills/frameworks/turborepo/turborepo/command/turborepo.md +70 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/best-practices/RULE.md +241 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/best-practices/dependencies.md +246 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/best-practices/packages.md +335 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/best-practices/structure.md +270 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/boundaries/RULE.md +126 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/caching/RULE.md +107 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/caching/gotchas.md +169 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/caching/remote-cache.md +127 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/ci/RULE.md +79 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/ci/github-actions.md +162 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/ci/patterns.md +145 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/ci/vercel.md +103 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/cli/RULE.md +100 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/cli/commands.md +297 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/configuration/RULE.md +211 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/configuration/global-options.md +187 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/configuration/gotchas.md +348 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/configuration/tasks.md +285 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/environment/RULE.md +96 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/environment/gotchas.md +141 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/environment/modes.md +101 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/filtering/RULE.md +148 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/filtering/patterns.md +152 -0
- package/dist/skills/frameworks/turborepo/turborepo/references/watch/RULE.md +99 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/docs/README.md +20 -0
- package/docs/reference/dp-requirements.md +210 -0
- package/docs/runbooks/dp-cli-scaffolding.md +187 -0
- package/package.json +24 -50
- package/.eslintignore +0 -4
- package/.eslintrc +0 -127
- package/.prettierignore +0 -4
- package/.prettierrc +0 -7
- package/bin/abstractions/builder.d.ts +0 -4
- package/bin/abstractions/builder.js +0 -7
- package/bin/builders/dotnet/base.d.ts +0 -18
- package/bin/builders/dotnet/base.js +0 -47
- package/bin/builders/dotnet/entity-configuration/index.d.ts +0 -8
- package/bin/builders/dotnet/entity-configuration/index.js +0 -29
- package/bin/builders/dotnet/entity-converter/index.d.ts +0 -8
- package/bin/builders/dotnet/entity-converter/index.js +0 -29
- package/bin/builders/dotnet/entity-model-create/index.d.ts +0 -8
- package/bin/builders/dotnet/entity-model-create/index.js +0 -29
- package/bin/builders/dotnet/entity-model-dto/index.d.ts +0 -8
- package/bin/builders/dotnet/entity-model-dto/index.js +0 -29
- package/bin/builders/dotnet/entity-model-list-item-dto/index.d.ts +0 -8
- package/bin/builders/dotnet/entity-model-list-item-dto/index.js +0 -29
- package/bin/builders/dotnet/entity-model-update/index.d.ts +0 -8
- package/bin/builders/dotnet/entity-model-update/index.js +0 -29
- package/bin/builders/dotnet/entity-search-parameters/index.d.ts +0 -8
- package/bin/builders/dotnet/entity-search-parameters/index.js +0 -29
- package/bin/builders/dotnet/entity-search-query-builder/index.d.ts +0 -8
- package/bin/builders/dotnet/entity-search-query-builder/index.js +0 -29
- package/bin/builders/dotnet/firestore-connector/index.d.ts +0 -8
- package/bin/builders/dotnet/firestore-connector/index.js +0 -29
- package/bin/builders/dotnet/firestore-mapper/index.d.ts +0 -8
- package/bin/builders/dotnet/firestore-mapper/index.js +0 -29
- package/bin/builders/dotnet/types.d.ts +0 -10
- package/bin/builders/dotnet/types.js +0 -3
- package/bin/commands/entity-add/__test__/dotnet/common.d.ts +0 -2
- package/bin/commands/entity-add/__test__/dotnet/common.js +0 -11
- package/bin/commands/entity-add/__test__/dotnet/render.configuration.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.configuration.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.converter.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.converter.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.firestore-connector.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.firestore-connector.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.firestore-mapper.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.firestore-mapper.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.model-create.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.model-create.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.model-dto.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.model-dto.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.model-list-item-dto.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.model-list-item-dto.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.model-update.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.model-update.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.search-parameters.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.search-parameters.spec.js +0 -22
- package/bin/commands/entity-add/__test__/dotnet/render.search-query.spec.d.ts +0 -1
- package/bin/commands/entity-add/__test__/dotnet/render.search-query.spec.js +0 -22
- package/bin/commands/entity-add/index.d.ts +0 -26
- package/bin/commands/entity-add/index.js +0 -44
- package/bin/logging/index.d.ts +0 -8
- package/bin/logging/index.js +0 -28
- package/bin/providers/rendering/base.d.ts +0 -3
- package/bin/providers/rendering/base.js +0 -7
- package/bin/providers/rendering/factory.d.ts +0 -5
- package/bin/providers/rendering/factory.js +0 -16
- package/bin/providers/rendering/handlebars.d.ts +0 -4
- package/bin/providers/rendering/handlebars.js +0 -16
- package/bin/renderer/index.d.ts +0 -6
- package/bin/renderer/index.js +0 -27
- package/bin/run.d.ts +0 -2
- package/bin/run.js +0 -70
- package/bin/services/folders.d.ts +0 -1
- package/bin/services/folders.js +0 -31
- package/bin/types/commands.d.ts +0 -5
- package/bin/types/commands.js +0 -3
- package/bin/utils/collections.d.ts +0 -1
- package/bin/utils/collections.js +0 -6
- package/bin/utils/files.d.ts +0 -3
- package/bin/utils/files.js +0 -19
- package/bin/utils/strings.d.ts +0 -4
- package/bin/utils/strings.js +0 -22
- package/bin/utils/text.d.ts +0 -1
- package/bin/utils/text.js +0 -8
- package/em-cli +0 -0
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.configuration.spec.ts.snap +0 -49
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.converter.spec.ts.snap +0 -53
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.firestore-connector.spec.ts.snap +0 -20
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.firestore-mapper.spec.ts.snap +0 -29
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.model-create.spec.ts.snap +0 -10
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.model-dto.spec.ts.snap +0 -9
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.model-list-item-dto.spec.ts.snap +0 -11
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.model-update.spec.ts.snap +0 -11
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.search-parameters.spec.ts.snap +0 -29
- package/src/commands/entity-add/__test__/dotnet/__snapshots__/render.search-query.spec.ts.snap +0 -42
- package/templates/dotnet/NewEntity/Configuration/<PluralizedEntity>Configuration.cs.template +0 -48
- package/templates/dotnet/NewEntity/Connectors/<PluralizedEntity>FirestoreConnector.cs.template +0 -15
- package/templates/dotnet/NewEntity/Converters/<PluralizedEntity>Converter.cs.template +0 -48
- package/templates/dotnet/NewEntity/Mappers/<PluralizedEntity>FirestoreMapper.cs.template +0 -25
- package/templates/dotnet/NewEntity/Models/<Entity>CreateInput.cs.template +0 -6
- package/templates/dotnet/NewEntity/Models/<Entity>Dto.cs.template +0 -5
- package/templates/dotnet/NewEntity/Models/<Entity>ListItemDto.cs.template +0 -6
- package/templates/dotnet/NewEntity/Models/<Entity>UpdateInput.cs.template +0 -6
- package/templates/dotnet/NewEntity/Search/<PluralizedEntity>QueryBuilder.cs.template +0 -38
- package/templates/dotnet/NewEntity/Search/<PluralizedEntity>SearchParameters.cs.template +0 -24
- package/tsconfig.json +0 -25
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
# OpenTelemetry Plugin - SKILLS.md
|
|
2
|
+
|
|
3
|
+
## Installation
|
|
4
|
+
```bash
|
|
5
|
+
bun add @elysiajs/opentelemetry
|
|
6
|
+
```
|
|
7
|
+
|
|
8
|
+
## Basic Usage
|
|
9
|
+
```typescript
|
|
10
|
+
import { opentelemetry } from '@elysiajs/opentelemetry'
|
|
11
|
+
import { BatchSpanProcessor } from '@opentelemetry/sdk-trace-node'
|
|
12
|
+
import { OTLPTraceExporter } from '@opentelemetry/exporter-trace-otlp-proto'
|
|
13
|
+
|
|
14
|
+
new Elysia()
|
|
15
|
+
.use(opentelemetry({
|
|
16
|
+
spanProcessors: [
|
|
17
|
+
new BatchSpanProcessor(new OTLPTraceExporter())
|
|
18
|
+
]
|
|
19
|
+
}))
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Auto-collects spans from OpenTelemetry-compatible libraries. Parent/child spans applied automatically.
|
|
23
|
+
|
|
24
|
+
## Config
|
|
25
|
+
Extends OpenTelemetry SDK params:
|
|
26
|
+
|
|
27
|
+
- `autoDetectResources` (true) - Auto-detect from env
|
|
28
|
+
- `contextManager` (AsyncHooksContextManager) - Custom context
|
|
29
|
+
- `textMapPropagator` (CompositePropagator) - W3C Trace + Baggage
|
|
30
|
+
- `metricReader` - For MeterProvider
|
|
31
|
+
- `views` - Histogram bucket config
|
|
32
|
+
- `instrumentations` (getNodeAutoInstrumentations()) - Metapackage or individual
|
|
33
|
+
- `resource` - Custom resource
|
|
34
|
+
- `resourceDetectors` ([envDetector, processDetector, hostDetector]) - Auto-detect needs `autoDetectResources: true`
|
|
35
|
+
- `sampler` - Custom sampler (default: sample all)
|
|
36
|
+
- `serviceName` - Namespace identifier
|
|
37
|
+
- `spanProcessors` - Array for tracer provider
|
|
38
|
+
- `traceExporter` - Auto-setup OTLP/http/protobuf with BatchSpanProcessor if not set
|
|
39
|
+
- `spanLimits` - Tracing params
|
|
40
|
+
|
|
41
|
+
### Resource Detectors via Env
|
|
42
|
+
```bash
|
|
43
|
+
export OTEL_NODE_RESOURCE_DETECTORS="env,host"
|
|
44
|
+
# Options: env, host, os, process, serviceinstance, all, none
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Export to Backends
|
|
48
|
+
Example - Axiom:
|
|
49
|
+
```typescript
|
|
50
|
+
.use(opentelemetry({
|
|
51
|
+
spanProcessors: [
|
|
52
|
+
new BatchSpanProcessor(
|
|
53
|
+
new OTLPTraceExporter({
|
|
54
|
+
url: 'https://api.axiom.co/v1/traces',
|
|
55
|
+
headers: {
|
|
56
|
+
Authorization: `Bearer ${Bun.env.AXIOM_TOKEN}`,
|
|
57
|
+
'X-Axiom-Dataset': Bun.env.AXIOM_DATASET
|
|
58
|
+
}
|
|
59
|
+
})
|
|
60
|
+
)
|
|
61
|
+
]
|
|
62
|
+
}))
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## OpenTelemetry SDK
|
|
66
|
+
Use SDK normally - runs under Elysia's request span, auto-appears in trace.
|
|
67
|
+
|
|
68
|
+
## Record Utility
|
|
69
|
+
Equivalent to `startActiveSpan` - auto-closes + captures exceptions:
|
|
70
|
+
```typescript
|
|
71
|
+
import { record } from '@elysiajs/opentelemetry'
|
|
72
|
+
|
|
73
|
+
.get('', () => {
|
|
74
|
+
return record('database.query', () => {
|
|
75
|
+
return db.query('SELECT * FROM users')
|
|
76
|
+
})
|
|
77
|
+
})
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Label for code shown in trace.
|
|
81
|
+
|
|
82
|
+
## Function Naming
|
|
83
|
+
Elysia reads function names as span names:
|
|
84
|
+
```typescript
|
|
85
|
+
// ⚠️ Anonymous span
|
|
86
|
+
.derive(async ({ cookie: { session } }) => {
|
|
87
|
+
return { user: await getProfile(session) }
|
|
88
|
+
})
|
|
89
|
+
|
|
90
|
+
// ✅ Named span: "getProfile"
|
|
91
|
+
.derive(async function getProfile({ cookie: { session } }) {
|
|
92
|
+
return { user: await getProfile(session) }
|
|
93
|
+
})
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
## getCurrentSpan
|
|
97
|
+
Get current span outside handler (via AsyncLocalStorage):
|
|
98
|
+
```typescript
|
|
99
|
+
import { getCurrentSpan } from '@elysiajs/opentelemetry'
|
|
100
|
+
|
|
101
|
+
function utility() {
|
|
102
|
+
const span = getCurrentSpan()
|
|
103
|
+
span.setAttributes({ 'custom.attribute': 'value' })
|
|
104
|
+
}
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
## setAttributes
|
|
108
|
+
Sugar for `getCurrentSpan().setAttributes`:
|
|
109
|
+
```typescript
|
|
110
|
+
import { setAttributes } from '@elysiajs/opentelemetry'
|
|
111
|
+
|
|
112
|
+
function utility() {
|
|
113
|
+
setAttributes({ 'custom.attribute': 'value' })
|
|
114
|
+
}
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
## Instrumentations (Advanced)
|
|
118
|
+
SDK must run before importing instrumented module.
|
|
119
|
+
|
|
120
|
+
### Setup
|
|
121
|
+
1. Separate file:
|
|
122
|
+
```typescript
|
|
123
|
+
// src/instrumentation.ts
|
|
124
|
+
import { opentelemetry } from '@elysiajs/opentelemetry'
|
|
125
|
+
import { PgInstrumentation } from '@opentelemetry/instrumentation-pg'
|
|
126
|
+
|
|
127
|
+
export const instrumentation = opentelemetry({
|
|
128
|
+
instrumentations: [new PgInstrumentation()]
|
|
129
|
+
})
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
2. Apply:
|
|
133
|
+
```typescript
|
|
134
|
+
// src/index.ts
|
|
135
|
+
import { instrumentation } from './instrumentation'
|
|
136
|
+
new Elysia().use(instrumentation).listen(3000)
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
3. Preload:
|
|
140
|
+
```toml
|
|
141
|
+
# bunfig.toml
|
|
142
|
+
preload = ["./src/instrumentation.ts"]
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
### Production Deployment (Advanced)
|
|
146
|
+
OpenTelemetry monkey-patches `node_modules`. Exclude instrumented libs from bundling:
|
|
147
|
+
```bash
|
|
148
|
+
bun build --compile --external pg --outfile server src/index.ts
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
Package.json:
|
|
152
|
+
```json
|
|
153
|
+
{
|
|
154
|
+
"dependencies": { "pg": "^8.15.6" },
|
|
155
|
+
"devDependencies": {
|
|
156
|
+
"@elysiajs/opentelemetry": "^1.2.0",
|
|
157
|
+
"@opentelemetry/instrumentation-pg": "^0.52.0"
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
Production install:
|
|
163
|
+
```bash
|
|
164
|
+
bun install --production
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
Keeps `node_modules` with instrumented libs at runtime.
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# Server Timing Plugin
|
|
2
|
+
This plugin adds support for auditing performance bottlenecks with Server Timing API
|
|
3
|
+
|
|
4
|
+
## Installation
|
|
5
|
+
```bash
|
|
6
|
+
bun add @elysiajs/server-timing
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
## Basic Usage
|
|
10
|
+
```typescript twoslash
|
|
11
|
+
import { Elysia } from 'elysia'
|
|
12
|
+
import { serverTiming } from '@elysiajs/server-timing'
|
|
13
|
+
|
|
14
|
+
new Elysia()
|
|
15
|
+
.use(serverTiming())
|
|
16
|
+
.get('/', () => 'hello')
|
|
17
|
+
.listen(3000)
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Server Timing then will append header 'Server-Timing' with log duration, function name, and detail for each life-cycle function.
|
|
21
|
+
|
|
22
|
+
To inspect, open browser developer tools > Network > [Request made through Elysia server] > Timing.
|
|
23
|
+
|
|
24
|
+
Now you can effortlessly audit the performance bottleneck of your server.
|
|
25
|
+
|
|
26
|
+
## Config
|
|
27
|
+
Below is a config which is accepted by the plugin
|
|
28
|
+
|
|
29
|
+
### enabled
|
|
30
|
+
@default `NODE_ENV !== 'production'`
|
|
31
|
+
|
|
32
|
+
Determine whether or not Server Timing should be enabled
|
|
33
|
+
|
|
34
|
+
### allow
|
|
35
|
+
@default `undefined`
|
|
36
|
+
|
|
37
|
+
A condition whether server timing should be log
|
|
38
|
+
|
|
39
|
+
### trace
|
|
40
|
+
@default `undefined`
|
|
41
|
+
|
|
42
|
+
Allow Server Timing to log specified life-cycle events:
|
|
43
|
+
|
|
44
|
+
Trace accepts objects of the following:
|
|
45
|
+
- request: capture duration from request
|
|
46
|
+
- parse: capture duration from parse
|
|
47
|
+
- transform: capture duration from transform
|
|
48
|
+
- beforeHandle: capture duration from beforeHandle
|
|
49
|
+
- handle: capture duration from the handle
|
|
50
|
+
- afterHandle: capture duration from afterHandle
|
|
51
|
+
- total: capture total duration from start to finish
|
|
52
|
+
|
|
53
|
+
## Pattern
|
|
54
|
+
Below you can find the common patterns to use the plugin.
|
|
55
|
+
|
|
56
|
+
## Allow Condition
|
|
57
|
+
You may disable Server Timing on specific routes via `allow` property
|
|
58
|
+
|
|
59
|
+
```ts twoslash
|
|
60
|
+
import { Elysia } from 'elysia'
|
|
61
|
+
import { serverTiming } from '@elysiajs/server-timing'
|
|
62
|
+
|
|
63
|
+
new Elysia()
|
|
64
|
+
.use(
|
|
65
|
+
serverTiming({
|
|
66
|
+
allow: ({ request }) => {
|
|
67
|
+
return new URL(request.url).pathname !== '/no-trace'
|
|
68
|
+
}
|
|
69
|
+
})
|
|
70
|
+
)
|
|
71
|
+
```
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# Static Plugin
|
|
2
|
+
This plugin can serve static files/folders for Elysia Server
|
|
3
|
+
|
|
4
|
+
## Installation
|
|
5
|
+
```bash
|
|
6
|
+
bun add @elysiajs/static
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
## Basic Usage
|
|
10
|
+
```typescript twoslash
|
|
11
|
+
import { Elysia } from 'elysia'
|
|
12
|
+
import { staticPlugin } from '@elysiajs/static'
|
|
13
|
+
|
|
14
|
+
new Elysia()
|
|
15
|
+
.use(staticPlugin())
|
|
16
|
+
.listen(3000)
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
By default, the static plugin default folder is `public`, and registered with `/public` prefix.
|
|
20
|
+
|
|
21
|
+
Suppose your project structure is:
|
|
22
|
+
```
|
|
23
|
+
| - src
|
|
24
|
+
| - index.ts
|
|
25
|
+
| - public
|
|
26
|
+
| - takodachi.png
|
|
27
|
+
| - nested
|
|
28
|
+
| - takodachi.png
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
The available path will become:
|
|
32
|
+
- /public/takodachi.png
|
|
33
|
+
- /public/nested/takodachi.png
|
|
34
|
+
|
|
35
|
+
## Config
|
|
36
|
+
Below is a config which is accepted by the plugin
|
|
37
|
+
|
|
38
|
+
### assets
|
|
39
|
+
@default `"public"`
|
|
40
|
+
|
|
41
|
+
Path to the folder to expose as static
|
|
42
|
+
|
|
43
|
+
### prefix
|
|
44
|
+
@default `"/public"`
|
|
45
|
+
|
|
46
|
+
Path prefix to register public files
|
|
47
|
+
|
|
48
|
+
### ignorePatterns
|
|
49
|
+
@default `[]`
|
|
50
|
+
|
|
51
|
+
List of files to ignore from serving as static files
|
|
52
|
+
|
|
53
|
+
### staticLimit
|
|
54
|
+
@default `1024`
|
|
55
|
+
|
|
56
|
+
By default, the static plugin will register paths to the Router with a static name, if the limits are exceeded, paths will be lazily added to the Router to reduce memory usage.
|
|
57
|
+
Tradeoff memory with performance.
|
|
58
|
+
|
|
59
|
+
### alwaysStatic
|
|
60
|
+
@default `false`
|
|
61
|
+
|
|
62
|
+
If set to true, static files path will be registered to Router skipping the `staticLimits`.
|
|
63
|
+
|
|
64
|
+
### headers
|
|
65
|
+
@default `{}`
|
|
66
|
+
|
|
67
|
+
Set response headers of files
|
|
68
|
+
|
|
69
|
+
### indexHTML
|
|
70
|
+
@default `false`
|
|
71
|
+
|
|
72
|
+
If set to true, the `index.html` file from the static directory will be served for any request that is matching neither a route nor any existing static file.
|
|
73
|
+
|
|
74
|
+
## Pattern
|
|
75
|
+
Below you can find the common patterns to use the plugin.
|
|
76
|
+
|
|
77
|
+
## Single file
|
|
78
|
+
Suppose you want to return just a single file, you can use `file` instead of using the static plugin
|
|
79
|
+
```typescript
|
|
80
|
+
import { Elysia, file } from 'elysia'
|
|
81
|
+
|
|
82
|
+
new Elysia()
|
|
83
|
+
.get('/file', file('public/takodachi.png'))
|
|
84
|
+
```
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
# Fullstack Dev Server
|
|
2
|
+
|
|
3
|
+
## What It Is
|
|
4
|
+
Bun 1.3 Fullstack Dev Server with HMR. React without bundler (no Vite/Webpack).
|
|
5
|
+
|
|
6
|
+
Example: [elysia-fullstack-example](https://github.com/saltyaom/elysia-fullstack-example)
|
|
7
|
+
|
|
8
|
+
## Setup
|
|
9
|
+
1. Install + use Elysia Static:
|
|
10
|
+
```typescript
|
|
11
|
+
import { Elysia } from 'elysia'
|
|
12
|
+
import { staticPlugin } from '@elysiajs/static'
|
|
13
|
+
|
|
14
|
+
new Elysia()
|
|
15
|
+
.use(await staticPlugin()) // await required for HMR hooks
|
|
16
|
+
.listen(3000)
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
2. Create `public/index.html` + `public/index.tsx`:
|
|
20
|
+
```html
|
|
21
|
+
<!-- public/index.html -->
|
|
22
|
+
<!doctype html>
|
|
23
|
+
<html lang="en">
|
|
24
|
+
<head>
|
|
25
|
+
<meta charset="UTF-8">
|
|
26
|
+
<title>Elysia React App</title>
|
|
27
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
28
|
+
</head>
|
|
29
|
+
<body>
|
|
30
|
+
<div id="root"></div>
|
|
31
|
+
<script type="module" src="./index.tsx"></script>
|
|
32
|
+
</body>
|
|
33
|
+
</html>
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
```tsx
|
|
37
|
+
// public/index.tsx
|
|
38
|
+
import { useState } from 'react'
|
|
39
|
+
import { createRoot } from 'react-dom/client'
|
|
40
|
+
|
|
41
|
+
function App() {
|
|
42
|
+
const [count, setCount] = useState(0)
|
|
43
|
+
const increase = () => setCount((c) => c + 1)
|
|
44
|
+
|
|
45
|
+
return (
|
|
46
|
+
<main>
|
|
47
|
+
<h2>{count}</h2>
|
|
48
|
+
<button onClick={increase}>Increase</button>
|
|
49
|
+
</main>
|
|
50
|
+
)
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
const root = createRoot(document.getElementById('root')!)
|
|
54
|
+
root.render(<App />)
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
3. Enable JSX in `tsconfig.json`:
|
|
58
|
+
```json
|
|
59
|
+
{
|
|
60
|
+
"compilerOptions": {
|
|
61
|
+
"jsx": "react-jsx"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
4. Navigate to `http://localhost:3000/public`.
|
|
67
|
+
|
|
68
|
+
Frontend + backend in single project. No bundler. Works with HMR, Tailwind, Tanstack Query, Eden Treaty, path alias.
|
|
69
|
+
|
|
70
|
+
## Custom Prefix
|
|
71
|
+
```typescript
|
|
72
|
+
.use(await staticPlugin({ prefix: '/' }))
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
Serves at `/` instead of `/public`.
|
|
76
|
+
|
|
77
|
+
## Tailwind CSS
|
|
78
|
+
1. Install:
|
|
79
|
+
```bash
|
|
80
|
+
bun add tailwindcss@4
|
|
81
|
+
bun add -d bun-plugin-tailwind
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
2. Create `bunfig.toml`:
|
|
85
|
+
```toml
|
|
86
|
+
[serve.static]
|
|
87
|
+
plugins = ["bun-plugin-tailwind"]
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
3. Create `public/global.css`:
|
|
91
|
+
```css
|
|
92
|
+
@tailwind base;
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
4. Add to HTML or TS:
|
|
96
|
+
```html
|
|
97
|
+
<link rel="stylesheet" href="tailwindcss">
|
|
98
|
+
```
|
|
99
|
+
Or:
|
|
100
|
+
```tsx
|
|
101
|
+
import './global.css'
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
## Path Alias
|
|
105
|
+
1. Add to `tsconfig.json`:
|
|
106
|
+
```json
|
|
107
|
+
{
|
|
108
|
+
"compilerOptions": {
|
|
109
|
+
"baseUrl": ".",
|
|
110
|
+
"paths": {
|
|
111
|
+
"@public/*": ["public/*"]
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
2. Use:
|
|
118
|
+
```tsx
|
|
119
|
+
import '@public/global.css'
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
Works out of box.
|
|
123
|
+
|
|
124
|
+
## Production Build
|
|
125
|
+
```bash
|
|
126
|
+
bun build --compile --target bun --outfile server src/index.ts
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
Creates single executable `server`. Include `public` folder when running.
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
# Cookie
|
|
2
|
+
|
|
3
|
+
## What It Is
|
|
4
|
+
Reactive mutable signal for cookie interaction. Auto-encodes/decodes objects.
|
|
5
|
+
|
|
6
|
+
## Basic Usage
|
|
7
|
+
No get/set - direct value access:
|
|
8
|
+
```typescript
|
|
9
|
+
import { Elysia } from 'elysia'
|
|
10
|
+
|
|
11
|
+
new Elysia()
|
|
12
|
+
.get('/', ({ cookie: { name } }) => {
|
|
13
|
+
// Get
|
|
14
|
+
name.value
|
|
15
|
+
|
|
16
|
+
// Set
|
|
17
|
+
name.value = "New Value"
|
|
18
|
+
})
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Auto-encodes/decodes objects. Just works.
|
|
22
|
+
|
|
23
|
+
## Reactivity
|
|
24
|
+
Signal-like approach. Single source of truth. Auto-sets headers, syncs values.
|
|
25
|
+
|
|
26
|
+
Cookie jar = Proxy object. Extract value always `Cookie<unknown>`, never `undefined`. Access via `.value`.
|
|
27
|
+
|
|
28
|
+
Iterate over cookie jar → only existing cookies.
|
|
29
|
+
|
|
30
|
+
## Cookie Attributes
|
|
31
|
+
|
|
32
|
+
### Direct Property Assignment
|
|
33
|
+
```typescript
|
|
34
|
+
.get('/', ({ cookie: { name } }) => {
|
|
35
|
+
// Get
|
|
36
|
+
name.domain
|
|
37
|
+
|
|
38
|
+
// Set
|
|
39
|
+
name.domain = 'millennium.sh'
|
|
40
|
+
name.httpOnly = true
|
|
41
|
+
})
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### set - Reset All Properties
|
|
45
|
+
```typescript
|
|
46
|
+
.get('/', ({ cookie: { name } }) => {
|
|
47
|
+
name.set({
|
|
48
|
+
domain: 'millennium.sh',
|
|
49
|
+
httpOnly: true
|
|
50
|
+
})
|
|
51
|
+
})
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Overwrites all properties.
|
|
55
|
+
|
|
56
|
+
### add - Update Specific Properties
|
|
57
|
+
Like `set` but only overwrites defined properties.
|
|
58
|
+
|
|
59
|
+
## Remove Cookie
|
|
60
|
+
```typescript
|
|
61
|
+
.get('/', ({ cookie, cookie: { name } }) => {
|
|
62
|
+
name.remove()
|
|
63
|
+
// or
|
|
64
|
+
delete cookie.name
|
|
65
|
+
})
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Cookie Schema
|
|
69
|
+
Strict validation + type inference with `t.Cookie`:
|
|
70
|
+
```typescript
|
|
71
|
+
import { Elysia, t } from 'elysia'
|
|
72
|
+
|
|
73
|
+
new Elysia()
|
|
74
|
+
.get('/', ({ cookie: { name } }) => {
|
|
75
|
+
name.value = {
|
|
76
|
+
id: 617,
|
|
77
|
+
name: 'Summoning 101'
|
|
78
|
+
}
|
|
79
|
+
}, {
|
|
80
|
+
cookie: t.Cookie({
|
|
81
|
+
name: t.Object({
|
|
82
|
+
id: t.Numeric(),
|
|
83
|
+
name: t.String()
|
|
84
|
+
})
|
|
85
|
+
})
|
|
86
|
+
})
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
### Nullable Cookie
|
|
90
|
+
```typescript
|
|
91
|
+
cookie: t.Cookie({
|
|
92
|
+
name: t.Optional(
|
|
93
|
+
t.Object({
|
|
94
|
+
id: t.Numeric(),
|
|
95
|
+
name: t.String()
|
|
96
|
+
})
|
|
97
|
+
)
|
|
98
|
+
})
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
## Cookie Signature
|
|
102
|
+
Cryptographic hash for verification. Prevents malicious modification.
|
|
103
|
+
|
|
104
|
+
```typescript
|
|
105
|
+
new Elysia()
|
|
106
|
+
.get('/', ({ cookie: { profile } }) => {
|
|
107
|
+
profile.value = { id: 617, name: 'Summoning 101' }
|
|
108
|
+
}, {
|
|
109
|
+
cookie: t.Cookie({
|
|
110
|
+
profile: t.Object({
|
|
111
|
+
id: t.Numeric(),
|
|
112
|
+
name: t.String()
|
|
113
|
+
})
|
|
114
|
+
}, {
|
|
115
|
+
secrets: 'Fischl von Luftschloss Narfidort',
|
|
116
|
+
sign: ['profile']
|
|
117
|
+
})
|
|
118
|
+
})
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
Auto-signs/unsigns.
|
|
122
|
+
|
|
123
|
+
### Global Config
|
|
124
|
+
```typescript
|
|
125
|
+
new Elysia({
|
|
126
|
+
cookie: {
|
|
127
|
+
secrets: 'Fischl von Luftschloss Narfidort',
|
|
128
|
+
sign: ['profile']
|
|
129
|
+
}
|
|
130
|
+
})
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
## Cookie Rotation
|
|
134
|
+
Auto-handles secret rotation. Old signature verification + new signature signing.
|
|
135
|
+
|
|
136
|
+
```typescript
|
|
137
|
+
new Elysia({
|
|
138
|
+
cookie: {
|
|
139
|
+
secrets: ['Vengeance will be mine', 'Fischl von Luftschloss Narfidort']
|
|
140
|
+
}
|
|
141
|
+
})
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
Array = key rotation (retire old, replace with new).
|
|
145
|
+
|
|
146
|
+
## Config
|
|
147
|
+
|
|
148
|
+
### secrets
|
|
149
|
+
Secret key for signing/unsigning. Array = key rotation.
|
|
150
|
+
|
|
151
|
+
### domain
|
|
152
|
+
Domain Set-Cookie attribute. Default: none (current domain only).
|
|
153
|
+
|
|
154
|
+
### encode
|
|
155
|
+
Function to encode value. Default: `encodeURIComponent`.
|
|
156
|
+
|
|
157
|
+
### expires
|
|
158
|
+
Date for Expires attribute. Default: none (non-persistent, deleted on browser exit).
|
|
159
|
+
|
|
160
|
+
If both `expires` and `maxAge` set, `maxAge` takes precedence (spec-compliant clients).
|
|
161
|
+
|
|
162
|
+
### httpOnly (false)
|
|
163
|
+
HttpOnly attribute. If true, JS can't access via `document.cookie`.
|
|
164
|
+
|
|
165
|
+
### maxAge (undefined)
|
|
166
|
+
Seconds for Max-Age attribute. Rounded down to integer.
|
|
167
|
+
|
|
168
|
+
If both `expires` and `maxAge` set, `maxAge` takes precedence (spec-compliant clients).
|
|
169
|
+
|
|
170
|
+
### path
|
|
171
|
+
Path attribute. Default: handler path.
|
|
172
|
+
|
|
173
|
+
### priority
|
|
174
|
+
Priority attribute: `low` | `medium` | `high`. Not fully standardized.
|
|
175
|
+
|
|
176
|
+
### sameSite
|
|
177
|
+
SameSite attribute:
|
|
178
|
+
- `true` = Strict
|
|
179
|
+
- `false` = not set
|
|
180
|
+
- `'lax'` = Lax
|
|
181
|
+
- `'none'` = None (explicit cross-site)
|
|
182
|
+
- `'strict'` = Strict
|
|
183
|
+
|
|
184
|
+
Not fully standardized.
|
|
185
|
+
|
|
186
|
+
### secure
|
|
187
|
+
Secure attribute. If true, only HTTPS. Clients won't send over HTTP.
|