@jaimevalasek/aioson 1.5.1 → 1.7.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/CHANGELOG.md +49 -0
- package/README.md +729 -226
- package/docs/design-previews/aurora-command-ui-website.html +884 -0
- package/docs/design-previews/aurora-command-ui.html +682 -0
- package/docs/design-previews/bold-editorial-ui-website.html +658 -0
- package/docs/design-previews/bold-editorial-ui.html +717 -0
- package/docs/design-previews/clean-saas-ui-website.html +1202 -0
- package/docs/design-previews/clean-saas-ui.html +549 -0
- package/docs/design-previews/cognitive-core-ui-website.html +1009 -0
- package/docs/design-previews/cognitive-core-ui.html +463 -0
- package/docs/design-previews/glassmorphism-ui-website.html +572 -0
- package/docs/design-previews/glassmorphism-ui.html +886 -0
- package/docs/design-previews/index.html +699 -0
- package/docs/design-previews/interface-design-website.html +1187 -0
- package/docs/design-previews/interface-design.html +513 -0
- package/docs/design-previews/neo-brutalist-ui-website.html +621 -0
- package/docs/design-previews/neo-brutalist-ui.html +797 -0
- package/docs/design-previews/premium-command-center-ui-website.html +1217 -0
- package/docs/design-previews/premium-command-center-ui.html +552 -0
- package/docs/design-previews/pt.squarespace.com-homepage.html +889 -0
- package/docs/design-previews/warm-craft-ui-website.html +684 -0
- package/docs/design-previews/warm-craft-ui.html +739 -0
- package/docs/en/cli-reference.md +20 -9
- package/docs/integrations/sdlc-genius-boundary.md +76 -0
- package/docs/integrations/sdlc-genius-eval-matrix.md +75 -0
- package/docs/integrations/sdlc-genius-install-checklist.md +93 -0
- package/docs/integrations/sdlc-genius-review-samples.md +86 -0
- package/docs/pt/README.md +10 -0
- package/docs/pt/agent-sharding.md +132 -0
- package/docs/pt/agentes.md +9 -2
- package/docs/pt/busca-de-contexto.md +129 -0
- package/docs/pt/cache-de-contexto.md +156 -0
- package/docs/pt/comandos-cli.md +915 -1
- package/docs/pt/design-hybrid-forge.md +356 -0
- package/docs/pt/devlog-pipeline.md +270 -0
- package/docs/pt/fluxo-artefatos.md +178 -0
- package/docs/pt/hooks-session-guard.md +454 -0
- package/docs/pt/inicio-rapido.md +54 -3
- package/docs/pt/inteligencia-adaptativa.md +324 -0
- package/docs/pt/monitor-de-contexto.md +158 -0
- package/docs/pt/recuperacao-de-sessao.md +125 -0
- package/docs/pt/sandbox.md +125 -0
- package/docs/pt/sdd-automation-scripts.md +557 -0
- package/docs/pt/site-forge.md +309 -0
- package/docs/pt/skills.md +98 -6
- package/docs/pt/spec-learnings-pipeline.md +265 -0
- package/package.json +1 -1
- package/src/a2a/client.js +165 -0
- package/src/a2a/server.js +223 -0
- package/src/agent-loader.js +280 -0
- package/src/cli.js +329 -1
- package/src/commands/agent-audit.js +397 -0
- package/src/commands/agent-export-skill.js +229 -0
- package/src/commands/agent-loader.js +85 -0
- package/src/commands/artifact-validate.js +189 -0
- package/src/commands/brief-gen.js +405 -0
- package/src/commands/brief-validate.js +65 -0
- package/src/commands/classify.js +256 -0
- package/src/commands/context-cache.js +90 -0
- package/src/commands/context-compact.js +49 -0
- package/src/commands/context-health.js +175 -0
- package/src/commands/context-monitor.js +163 -0
- package/src/commands/context-search.js +66 -0
- package/src/commands/context-trim.js +177 -0
- package/src/commands/design-hybrid-options.js +385 -0
- package/src/commands/detect-test-runner.js +55 -0
- package/src/commands/devlog-export-brains.js +27 -0
- package/src/commands/devlog-process.js +292 -0
- package/src/commands/devlog-watch.js +131 -0
- package/src/commands/feature-close.js +165 -0
- package/src/commands/gate-check.js +228 -0
- package/src/commands/health.js +214 -0
- package/src/commands/hooks-emit.js +253 -0
- package/src/commands/hooks-install.js +347 -0
- package/src/commands/init.js +54 -13
- package/src/commands/install.js +52 -13
- package/src/commands/learning-auto-promote.js +195 -0
- package/src/commands/learning-evolve.js +364 -0
- package/src/commands/learning-export.js +103 -0
- package/src/commands/learning-rollback.js +164 -0
- package/src/commands/live.js +59 -1
- package/src/commands/pattern-detect.js +33 -0
- package/src/commands/preflight-context.js +30 -0
- package/src/commands/preflight.js +208 -0
- package/src/commands/pulse-update.js +130 -0
- package/src/commands/recovery.js +43 -0
- package/src/commands/runner-daemon.js +274 -0
- package/src/commands/runner-plan.js +70 -0
- package/src/commands/runner-queue-from-plan.js +166 -0
- package/src/commands/runner-queue.js +189 -0
- package/src/commands/runner-run.js +129 -0
- package/src/commands/runtime.js +47 -1
- package/src/commands/sandbox.js +37 -0
- package/src/commands/self-implement-loop.js +256 -0
- package/src/commands/session-guard.js +218 -0
- package/src/commands/setup-context.js +22 -2
- package/src/commands/setup.js +178 -0
- package/src/commands/sizing.js +165 -0
- package/src/commands/skill.js +144 -32
- package/src/commands/spec-checkpoint.js +177 -0
- package/src/commands/spec-status.js +79 -0
- package/src/commands/spec-sync.js +190 -0
- package/src/commands/spec-tasks.js +288 -0
- package/src/commands/squad-autorun.js +1220 -0
- package/src/commands/squad-bus.js +217 -0
- package/src/commands/squad-card.js +149 -0
- package/src/commands/squad-daemon.js +134 -0
- package/src/commands/squad-dependency-graph.js +164 -0
- package/src/commands/squad-review.js +106 -0
- package/src/commands/squad-scaffold.js +55 -0
- package/src/commands/squad-tool-register.js +157 -0
- package/src/commands/state-save.js +122 -0
- package/src/commands/tool-registry-cmd.js +232 -0
- package/src/commands/update.js +9 -0
- package/src/commands/verify-gate.js +572 -0
- package/src/commands/workflow-execute.js +241 -0
- package/src/constants.js +18 -0
- package/src/context-cache.js +159 -0
- package/src/context-search.js +326 -0
- package/src/design-variation-catalog.js +503 -0
- package/src/i18n/messages/en.js +32 -2
- package/src/i18n/messages/es.js +30 -2
- package/src/i18n/messages/fr.js +30 -2
- package/src/i18n/messages/pt-BR.js +32 -2
- package/src/install-animation.js +260 -0
- package/src/install-profile.js +143 -0
- package/src/install-wizard.js +475 -0
- package/src/installer.js +44 -10
- package/src/lib/health-check.js +158 -0
- package/src/lib/hook-protocol.js +76 -0
- package/src/mcp/apps/squad-dashboard/app.js +163 -0
- package/src/mcp/apps/squad-dashboard/index.html +261 -0
- package/src/mcp/apps/squad-dashboard/mcp-manifest.json +23 -0
- package/src/mcp/resources/squad-state.js +130 -0
- package/src/parser.js +7 -1
- package/src/preflight-engine.js +443 -0
- package/src/recovery-context-session.js +154 -0
- package/src/runner/cascade.js +97 -0
- package/src/runner/cli-launcher.js +109 -0
- package/src/runner/plan-importer.js +63 -0
- package/src/runner/queue-store.js +159 -0
- package/src/runtime-store.js +158 -4
- package/src/sandbox.js +177 -0
- package/src/squad/agent-teams-adapter.js +264 -0
- package/src/squad/brief-validator.js +350 -0
- package/src/squad/bus-bridge.js +140 -0
- package/src/squad/context-compactor.js +265 -0
- package/src/squad/cross-ai-synthesizer.js +250 -0
- package/src/squad/hooks-generator.js +196 -0
- package/src/squad/inter-squad-events.js +175 -0
- package/src/squad/intra-bus.js +345 -0
- package/src/squad/learning-extractor.js +213 -0
- package/src/squad/pattern-detector.js +365 -0
- package/src/squad/preflight-context.js +296 -0
- package/src/squad/recovery-context.js +242 -71
- package/src/squad/reflection.js +365 -0
- package/src/squad/squad-scaffold.js +177 -0
- package/src/squad/state-manager.js +310 -0
- package/src/squad/task-decomposer.js +652 -0
- package/src/squad/verify-gate.js +303 -0
- package/src/tool-executor.js +94 -0
- package/src/updater.js +10 -3
- package/src/worker-runner.js +186 -1
- package/template/.aioson/agents/analyst.md +119 -3
- package/template/.aioson/agents/architect.md +98 -0
- package/template/.aioson/agents/design-hybrid-forge.md +141 -0
- package/template/.aioson/agents/dev.md +335 -14
- package/template/.aioson/agents/deyvin.md +117 -2
- package/template/.aioson/agents/discovery-design-doc.md +44 -0
- package/template/.aioson/agents/genome.md +14 -0
- package/template/.aioson/agents/neo.md +78 -1
- package/template/.aioson/agents/orache.md +50 -4
- package/template/.aioson/agents/orchestrator.md +197 -1
- package/template/.aioson/agents/pm.md +93 -0
- package/template/.aioson/agents/product.md +77 -4
- package/template/.aioson/agents/profiler-enricher.md +14 -0
- package/template/.aioson/agents/profiler-forge.md +14 -0
- package/template/.aioson/agents/profiler-researcher.md +14 -0
- package/template/.aioson/agents/qa.md +249 -19
- package/template/.aioson/agents/setup.md +144 -12
- package/template/.aioson/agents/sheldon.md +237 -11
- package/template/.aioson/agents/site-forge.md +1753 -0
- package/template/.aioson/agents/squad.md +162 -0
- package/template/.aioson/agents/tester.md +209 -0
- package/template/.aioson/agents/ux-ui.md +34 -1
- package/template/.aioson/brains/README.md +128 -0
- package/template/.aioson/brains/_index.json +16 -0
- package/template/.aioson/brains/scripts/query.js +103 -0
- package/template/.aioson/brains/site-forge/visual-patterns.brain.json +205 -0
- package/template/.aioson/config.md +158 -13
- package/template/.aioson/constitution.md +33 -0
- package/template/.aioson/context/forensics/.gitkeep +0 -0
- package/template/.aioson/context/project-pulse.md +34 -0
- package/template/.aioson/context/seeds/seed-example.md +27 -0
- package/template/.aioson/context/user-profile.md +42 -0
- package/template/.aioson/docs/LAYERS.md +79 -0
- package/template/.aioson/docs/README.md +76 -0
- package/template/.aioson/docs/example-external-api-context.md +72 -0
- package/template/.aioson/locales/en/agents/architect.md +17 -0
- package/template/.aioson/locales/en/agents/dev.md +79 -13
- package/template/.aioson/locales/en/agents/orache.md +6 -0
- package/template/.aioson/locales/en/agents/orchestrator.md +24 -0
- package/template/.aioson/locales/en/agents/product.md +50 -0
- package/template/.aioson/locales/en/agents/setup.md +33 -1
- package/template/.aioson/locales/en/agents/sheldon.md +115 -0
- package/template/.aioson/locales/en/agents/squad.md +14 -0
- package/template/.aioson/locales/en/agents/tester.md +6 -0
- package/template/.aioson/locales/es/agents/analyst.md +2 -0
- package/template/.aioson/locales/es/agents/architect.md +19 -0
- package/template/.aioson/locales/es/agents/dev.md +64 -4
- package/template/.aioson/locales/es/agents/deyvin.md +2 -0
- package/template/.aioson/locales/es/agents/discovery-design-doc.md +2 -0
- package/template/.aioson/locales/es/agents/genome.md +2 -0
- package/template/.aioson/locales/es/agents/neo.md +2 -0
- package/template/.aioson/locales/es/agents/orache.md +2 -0
- package/template/.aioson/locales/es/agents/orchestrator.md +26 -0
- package/template/.aioson/locales/es/agents/pair.md +2 -0
- package/template/.aioson/locales/es/agents/pm.md +2 -0
- package/template/.aioson/locales/es/agents/product.md +52 -0
- package/template/.aioson/locales/es/agents/profiler-enricher.md +2 -0
- package/template/.aioson/locales/es/agents/profiler-forge.md +2 -0
- package/template/.aioson/locales/es/agents/profiler-researcher.md +2 -0
- package/template/.aioson/locales/es/agents/qa.md +2 -0
- package/template/.aioson/locales/es/agents/setup.md +35 -1
- package/template/.aioson/locales/es/agents/sheldon.md +117 -0
- package/template/.aioson/locales/es/agents/squad.md +16 -0
- package/template/.aioson/locales/es/agents/tester.md +9 -0
- package/template/.aioson/locales/es/agents/ux-ui.md +2 -0
- package/template/.aioson/locales/fr/agents/analyst.md +2 -0
- package/template/.aioson/locales/fr/agents/architect.md +19 -0
- package/template/.aioson/locales/fr/agents/dev.md +64 -4
- package/template/.aioson/locales/fr/agents/deyvin.md +2 -0
- package/template/.aioson/locales/fr/agents/discovery-design-doc.md +2 -0
- package/template/.aioson/locales/fr/agents/genome.md +2 -0
- package/template/.aioson/locales/fr/agents/neo.md +2 -0
- package/template/.aioson/locales/fr/agents/orache.md +2 -0
- package/template/.aioson/locales/fr/agents/orchestrator.md +26 -0
- package/template/.aioson/locales/fr/agents/pair.md +2 -0
- package/template/.aioson/locales/fr/agents/pm.md +2 -0
- package/template/.aioson/locales/fr/agents/product.md +52 -0
- package/template/.aioson/locales/fr/agents/profiler-enricher.md +2 -0
- package/template/.aioson/locales/fr/agents/profiler-forge.md +2 -0
- package/template/.aioson/locales/fr/agents/profiler-researcher.md +2 -0
- package/template/.aioson/locales/fr/agents/qa.md +2 -0
- package/template/.aioson/locales/fr/agents/setup.md +35 -1
- package/template/.aioson/locales/fr/agents/sheldon.md +117 -0
- package/template/.aioson/locales/fr/agents/squad.md +16 -0
- package/template/.aioson/locales/fr/agents/tester.md +9 -0
- package/template/.aioson/locales/fr/agents/ux-ui.md +2 -0
- package/template/.aioson/locales/pt-BR/agents/analyst.md +64 -3
- package/template/.aioson/locales/pt-BR/agents/architect.md +42 -0
- package/template/.aioson/locales/pt-BR/agents/dev.md +147 -14
- package/template/.aioson/locales/pt-BR/agents/deyvin.md +47 -0
- package/template/.aioson/locales/pt-BR/agents/neo.md +62 -1
- package/template/.aioson/locales/pt-BR/agents/orchestrator.md +158 -2
- package/template/.aioson/locales/pt-BR/agents/pm.md +95 -1
- package/template/.aioson/locales/pt-BR/agents/product.md +145 -18
- package/template/.aioson/locales/pt-BR/agents/qa.md +16 -0
- package/template/.aioson/locales/pt-BR/agents/setup.md +134 -19
- package/template/.aioson/locales/pt-BR/agents/sheldon.md +132 -1
- package/template/.aioson/locales/pt-BR/agents/squad.md +14 -0
- package/template/.aioson/locales/pt-BR/agents/tester.md +449 -0
- package/template/.aioson/rules/README.md +69 -0
- package/template/.aioson/rules/data-format-convention.md +136 -0
- package/template/.aioson/rules/example-monetary-values.md +30 -0
- package/template/.aioson/schemas/squad-manifest.schema.json +124 -3
- package/template/.aioson/skills/design/aurora-command-ui/SKILL.md +243 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/art-direction.md +293 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/components.md +827 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/dashboards.md +250 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/design-tokens.md +585 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/motion.md +365 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/patterns.md +482 -0
- package/template/.aioson/skills/design/aurora-command-ui/references/websites.md +387 -0
- package/template/.aioson/skills/design/glassmorphism-ui/SKILL.md +222 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/art-direction.md +159 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/components.md +498 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/dashboards.md +236 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/design-tokens.md +274 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/motion.md +355 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/patterns.md +198 -0
- package/template/.aioson/skills/design/glassmorphism-ui/references/websites.md +307 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/SKILL.md +213 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/art-direction.md +228 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/components.md +855 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/dashboards.md +334 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/design-tokens.md +342 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/motion.md +286 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/patterns.md +458 -0
- package/template/.aioson/skills/design/neo-brutalist-ui/references/websites.md +723 -0
- package/template/.aioson/skills/design/pt.squarespace.com/.skill-meta.json +31 -0
- package/template/.aioson/skills/design/pt.squarespace.com/SKILL.md +66 -0
- package/template/.aioson/skills/design/pt.squarespace.com/references/components.md +368 -0
- package/template/.aioson/skills/design/pt.squarespace.com/references/design-tokens.md +150 -0
- package/template/.aioson/skills/design/pt.squarespace.com/references/motion.md +270 -0
- package/template/.aioson/skills/design/pt.squarespace.com/references/patterns.md +189 -0
- package/template/.aioson/skills/design/pt.squarespace.com/references/websites.md +165 -0
- package/template/.aioson/skills/process/aioson-spec-driven/SKILL.md +46 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/analyst.md +30 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/approval-gates.md +109 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/architect.md +23 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/artifact-map.md +44 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/classification-map.md +37 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/dev.md +47 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/deyvin.md +27 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/hardening-lane.md +49 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/maintenance-and-state.md +101 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/product.md +25 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/qa.md +30 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/sheldon.md +25 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/ui-language.md +75 -0
- package/template/.aioson/skills/process/design-hybrid-forge/SKILL.md +147 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/crossover-protocol.md +221 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/naming-registry.md +88 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/output-contract.md +306 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/pair-compatibility.md +149 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/quality-gates.md +208 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/variation-library.md +125 -0
- package/template/.aioson/skills/process/simplify/SKILL.md +173 -0
- package/template/.aioson/skills/static/context-budget-guide.md +46 -0
- package/template/.aioson/skills/static/harness-sensors.md +74 -0
- package/template/.aioson/skills/static/multi-agent-patterns.md +43 -0
- package/template/.aioson/skills/static/react-motion-patterns.md +22 -0
- package/template/.aioson/skills/static/static-html-patterns/checklists.md +43 -0
- package/template/.aioson/skills/static/static-html-patterns/css-tokens.md +609 -0
- package/template/.aioson/skills/static/static-html-patterns/motion.md +193 -0
- package/template/.aioson/skills/static/static-html-patterns/premium.md +711 -0
- package/template/.aioson/skills/static/static-html-patterns/structure.md +209 -0
- package/template/.aioson/skills/static/static-html-patterns/utilities.md +190 -0
- package/template/.aioson/skills/static/static-html-patterns.md +58 -1913
- package/template/.aioson/skills/static/threejs-patterns.md +929 -0
- package/template/.aioson/skills/static/web-research-cache.md +112 -0
- package/template/.aioson/tasks/implementation-plan.md +21 -1
- package/template/.claude/commands/aioson/agent/design-hybrid-forge.md +5 -0
- package/template/.claude/commands/aioson/agent/orache.md +5 -0
- package/template/.claude/commands/aioson/agent/sheldon.md +5 -0
- package/template/.claude/commands/aioson/agent/site-forge.md +5 -0
- package/template/AGENTS.md +75 -1
- package/template/CLAUDE.md +31 -0
- package/template/OPENCODE.md +4 -0
- package/template/researchs/.gitkeep +0 -0
|
@@ -0,0 +1,621 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>DRFT — Developer Tool Landing / Neo-Brutalist UI Preview</title>
|
|
7
|
+
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
8
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
9
|
+
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet" />
|
|
10
|
+
<style>
|
|
11
|
+
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
12
|
+
|
|
13
|
+
:root {
|
|
14
|
+
--bg: #FFFDF5;
|
|
15
|
+
--black: #1A1A1A;
|
|
16
|
+
--yellow: #FACC15;
|
|
17
|
+
--white: #FFFFFF;
|
|
18
|
+
--border: 2px solid #1A1A1A;
|
|
19
|
+
--shadow-card: 6px 6px 0 #1A1A1A;
|
|
20
|
+
--shadow-btn: 3px 3px 0 #1A1A1A;
|
|
21
|
+
--muted: #555555;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
html { scroll-behavior: smooth; }
|
|
25
|
+
|
|
26
|
+
body {
|
|
27
|
+
font-family: 'Inter', sans-serif;
|
|
28
|
+
background: var(--bg);
|
|
29
|
+
color: var(--black);
|
|
30
|
+
overflow-x: hidden;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.container {
|
|
34
|
+
max-width: 1160px;
|
|
35
|
+
margin: 0 auto;
|
|
36
|
+
padding: 0 24px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/* === NAV === */
|
|
40
|
+
nav {
|
|
41
|
+
background: var(--bg);
|
|
42
|
+
border-bottom: 3px solid var(--black);
|
|
43
|
+
position: sticky;
|
|
44
|
+
top: 0;
|
|
45
|
+
z-index: 100;
|
|
46
|
+
}
|
|
47
|
+
.nav-inner {
|
|
48
|
+
display: flex;
|
|
49
|
+
align-items: center;
|
|
50
|
+
justify-content: space-between;
|
|
51
|
+
height: 64px;
|
|
52
|
+
max-width: 1160px;
|
|
53
|
+
margin: 0 auto;
|
|
54
|
+
padding: 0 24px;
|
|
55
|
+
}
|
|
56
|
+
.logo {
|
|
57
|
+
font-family: 'Space Grotesk', sans-serif;
|
|
58
|
+
font-size: 1.6rem;
|
|
59
|
+
font-weight: 800;
|
|
60
|
+
letter-spacing: -0.04em;
|
|
61
|
+
color: var(--black);
|
|
62
|
+
}
|
|
63
|
+
.logo-dot {
|
|
64
|
+
display: inline-block;
|
|
65
|
+
width: 8px; height: 8px;
|
|
66
|
+
background: var(--yellow);
|
|
67
|
+
border: 2px solid var(--black);
|
|
68
|
+
border-radius: 50%;
|
|
69
|
+
vertical-align: middle;
|
|
70
|
+
margin-left: 2px;
|
|
71
|
+
margin-bottom: 4px;
|
|
72
|
+
}
|
|
73
|
+
.nav-links {
|
|
74
|
+
display: flex;
|
|
75
|
+
gap: 32px;
|
|
76
|
+
list-style: none;
|
|
77
|
+
}
|
|
78
|
+
.nav-links a {
|
|
79
|
+
font-family: 'JetBrains Mono', monospace;
|
|
80
|
+
text-decoration: none;
|
|
81
|
+
color: var(--black);
|
|
82
|
+
font-size: 0.82rem;
|
|
83
|
+
font-weight: 500;
|
|
84
|
+
text-transform: uppercase;
|
|
85
|
+
letter-spacing: 0.06em;
|
|
86
|
+
transition: color 0.15s;
|
|
87
|
+
}
|
|
88
|
+
.nav-links a:hover { color: var(--muted); }
|
|
89
|
+
.btn-yellow {
|
|
90
|
+
background: var(--yellow);
|
|
91
|
+
color: var(--black);
|
|
92
|
+
border: var(--border);
|
|
93
|
+
box-shadow: var(--shadow-btn);
|
|
94
|
+
border-radius: 0;
|
|
95
|
+
padding: 10px 20px;
|
|
96
|
+
font-family: 'Space Grotesk', sans-serif;
|
|
97
|
+
font-size: 0.88rem;
|
|
98
|
+
font-weight: 700;
|
|
99
|
+
cursor: pointer;
|
|
100
|
+
letter-spacing: -0.01em;
|
|
101
|
+
transition: box-shadow 0.1s, transform 0.1s;
|
|
102
|
+
}
|
|
103
|
+
.btn-yellow:hover {
|
|
104
|
+
box-shadow: 1px 1px 0 var(--black);
|
|
105
|
+
transform: translate(2px, 2px);
|
|
106
|
+
}
|
|
107
|
+
.btn-ghost {
|
|
108
|
+
background: transparent;
|
|
109
|
+
color: var(--black);
|
|
110
|
+
border: var(--border);
|
|
111
|
+
box-shadow: var(--shadow-btn);
|
|
112
|
+
border-radius: 0;
|
|
113
|
+
padding: 10px 20px;
|
|
114
|
+
font-family: 'Space Grotesk', sans-serif;
|
|
115
|
+
font-size: 0.88rem;
|
|
116
|
+
font-weight: 700;
|
|
117
|
+
cursor: pointer;
|
|
118
|
+
transition: box-shadow 0.1s, transform 0.1s;
|
|
119
|
+
}
|
|
120
|
+
.btn-ghost:hover {
|
|
121
|
+
box-shadow: 1px 1px 0 var(--black);
|
|
122
|
+
transform: translate(2px, 2px);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/* === HERO === */
|
|
126
|
+
.hero {
|
|
127
|
+
padding: 96px 0 72px;
|
|
128
|
+
border-bottom: 3px solid var(--black);
|
|
129
|
+
text-align: center;
|
|
130
|
+
}
|
|
131
|
+
.hero-label {
|
|
132
|
+
font-family: 'JetBrains Mono', monospace;
|
|
133
|
+
font-size: 0.78rem;
|
|
134
|
+
font-weight: 600;
|
|
135
|
+
text-transform: uppercase;
|
|
136
|
+
letter-spacing: 0.1em;
|
|
137
|
+
color: var(--muted);
|
|
138
|
+
margin-bottom: 20px;
|
|
139
|
+
display: flex;
|
|
140
|
+
align-items: center;
|
|
141
|
+
justify-content: center;
|
|
142
|
+
gap: 10px;
|
|
143
|
+
}
|
|
144
|
+
.hero-label::before {
|
|
145
|
+
content: '';
|
|
146
|
+
display: block;
|
|
147
|
+
width: 32px; height: 2px;
|
|
148
|
+
background: var(--yellow);
|
|
149
|
+
border: 1px solid var(--black);
|
|
150
|
+
}
|
|
151
|
+
.hero h1 {
|
|
152
|
+
font-family: 'Space Grotesk', sans-serif;
|
|
153
|
+
font-size: clamp(52px, 8vw, 80px);
|
|
154
|
+
font-weight: 800;
|
|
155
|
+
line-height: 0.95;
|
|
156
|
+
letter-spacing: -0.04em;
|
|
157
|
+
color: var(--black);
|
|
158
|
+
margin: 0 auto 28px;
|
|
159
|
+
max-width: 800px;
|
|
160
|
+
}
|
|
161
|
+
.hero h1 em {
|
|
162
|
+
font-style: normal;
|
|
163
|
+
background: var(--yellow);
|
|
164
|
+
padding: 0 6px;
|
|
165
|
+
border: 2px solid var(--black);
|
|
166
|
+
}
|
|
167
|
+
.hero-sub {
|
|
168
|
+
font-size: 1.1rem;
|
|
169
|
+
color: var(--muted);
|
|
170
|
+
max-width: 520px;
|
|
171
|
+
line-height: 1.65;
|
|
172
|
+
margin: 0 auto 40px;
|
|
173
|
+
font-weight: 400;
|
|
174
|
+
}
|
|
175
|
+
.hero-ctas {
|
|
176
|
+
display: flex;
|
|
177
|
+
gap: 14px;
|
|
178
|
+
flex-wrap: wrap;
|
|
179
|
+
margin-bottom: 56px;
|
|
180
|
+
justify-content: center;
|
|
181
|
+
}
|
|
182
|
+
.btn-large { padding: 14px 32px; font-size: 1rem; }
|
|
183
|
+
|
|
184
|
+
/* Terminal block */
|
|
185
|
+
.terminal {
|
|
186
|
+
background: var(--black);
|
|
187
|
+
border: 2px solid var(--black);
|
|
188
|
+
box-shadow: var(--shadow-card);
|
|
189
|
+
border-radius: 0;
|
|
190
|
+
max-width: 680px;
|
|
191
|
+
margin: 0 auto;
|
|
192
|
+
overflow: hidden;
|
|
193
|
+
}
|
|
194
|
+
.terminal-bar {
|
|
195
|
+
display: flex;
|
|
196
|
+
align-items: center;
|
|
197
|
+
gap: 7px;
|
|
198
|
+
padding: 12px 16px;
|
|
199
|
+
border-bottom: 2px solid #2D2D2D;
|
|
200
|
+
}
|
|
201
|
+
.t-dot { width: 11px; height: 11px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); }
|
|
202
|
+
.t-dot.red { background: #FF5F57; }
|
|
203
|
+
.t-dot.yellow { background: #FFBD2E; }
|
|
204
|
+
.t-dot.green { background: #28C840; }
|
|
205
|
+
.terminal-title {
|
|
206
|
+
font-family: 'JetBrains Mono', monospace;
|
|
207
|
+
font-size: 0.72rem;
|
|
208
|
+
color: #666;
|
|
209
|
+
margin-left: auto;
|
|
210
|
+
text-transform: uppercase;
|
|
211
|
+
letter-spacing: 0.08em;
|
|
212
|
+
}
|
|
213
|
+
.terminal-body {
|
|
214
|
+
padding: 20px 20px;
|
|
215
|
+
font-family: 'JetBrains Mono', monospace;
|
|
216
|
+
font-size: 0.82rem;
|
|
217
|
+
line-height: 1.8;
|
|
218
|
+
color: #C9D1D9;
|
|
219
|
+
}
|
|
220
|
+
.t-prompt { color: #FACC15; }
|
|
221
|
+
.t-cmd { color: #E8E8E8; }
|
|
222
|
+
.t-comment { color: #6B7280; }
|
|
223
|
+
.t-success { color: #34D399; }
|
|
224
|
+
.t-dim { color: #6B7280; }
|
|
225
|
+
.t-string { color: #A5F3FC; }
|
|
226
|
+
.t-num { color: #FCA5A5; }
|
|
227
|
+
|
|
228
|
+
/* === STATS BAR === */
|
|
229
|
+
.stats-bar {
|
|
230
|
+
background: var(--yellow);
|
|
231
|
+
border-bottom: 3px solid var(--black);
|
|
232
|
+
padding: 0;
|
|
233
|
+
}
|
|
234
|
+
.stats-bar-inner {
|
|
235
|
+
max-width: 1160px;
|
|
236
|
+
margin: 0 auto;
|
|
237
|
+
padding: 0 24px;
|
|
238
|
+
display: grid;
|
|
239
|
+
grid-template-columns: repeat(3, 1fr);
|
|
240
|
+
}
|
|
241
|
+
.stat-item {
|
|
242
|
+
padding: 28px 32px;
|
|
243
|
+
text-align: center;
|
|
244
|
+
border-right: 3px solid var(--black);
|
|
245
|
+
}
|
|
246
|
+
.stat-item:last-child { border-right: none; }
|
|
247
|
+
.stat-num {
|
|
248
|
+
font-family: 'JetBrains Mono', monospace;
|
|
249
|
+
font-size: 1.8rem;
|
|
250
|
+
font-weight: 700;
|
|
251
|
+
color: var(--black);
|
|
252
|
+
display: block;
|
|
253
|
+
letter-spacing: -0.02em;
|
|
254
|
+
margin-bottom: 4px;
|
|
255
|
+
}
|
|
256
|
+
.stat-lbl {
|
|
257
|
+
font-family: 'JetBrains Mono', monospace;
|
|
258
|
+
font-size: 0.68rem;
|
|
259
|
+
font-weight: 600;
|
|
260
|
+
text-transform: uppercase;
|
|
261
|
+
letter-spacing: 0.1em;
|
|
262
|
+
color: var(--black);
|
|
263
|
+
opacity: 0.65;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/* === FEATURES === */
|
|
267
|
+
.features-section {
|
|
268
|
+
padding: 96px 0;
|
|
269
|
+
border-bottom: 3px solid var(--black);
|
|
270
|
+
}
|
|
271
|
+
.section-overline {
|
|
272
|
+
font-family: 'JetBrains Mono', monospace;
|
|
273
|
+
font-size: 0.72rem;
|
|
274
|
+
font-weight: 700;
|
|
275
|
+
text-transform: uppercase;
|
|
276
|
+
letter-spacing: 0.12em;
|
|
277
|
+
color: var(--muted);
|
|
278
|
+
margin-bottom: 12px;
|
|
279
|
+
text-align: center;
|
|
280
|
+
}
|
|
281
|
+
.section-title {
|
|
282
|
+
font-family: 'Space Grotesk', sans-serif;
|
|
283
|
+
font-size: clamp(28px, 4vw, 40px);
|
|
284
|
+
font-weight: 800;
|
|
285
|
+
letter-spacing: -0.03em;
|
|
286
|
+
color: var(--black);
|
|
287
|
+
margin-bottom: 52px;
|
|
288
|
+
line-height: 1.1;
|
|
289
|
+
text-align: center;
|
|
290
|
+
}
|
|
291
|
+
.features-grid {
|
|
292
|
+
display: grid;
|
|
293
|
+
grid-template-columns: repeat(3, 1fr);
|
|
294
|
+
gap: 0;
|
|
295
|
+
border: 2px solid var(--black);
|
|
296
|
+
box-shadow: var(--shadow-card);
|
|
297
|
+
}
|
|
298
|
+
.feature-card {
|
|
299
|
+
background: var(--white);
|
|
300
|
+
border-right: 2px solid var(--black);
|
|
301
|
+
padding: 36px 28px;
|
|
302
|
+
}
|
|
303
|
+
.feature-card:last-child { border-right: none; }
|
|
304
|
+
.feature-num {
|
|
305
|
+
font-family: 'JetBrains Mono', monospace;
|
|
306
|
+
font-size: 2.8rem;
|
|
307
|
+
font-weight: 700;
|
|
308
|
+
color: var(--yellow);
|
|
309
|
+
-webkit-text-stroke: 2px var(--black);
|
|
310
|
+
margin-bottom: 16px;
|
|
311
|
+
display: block;
|
|
312
|
+
line-height: 1;
|
|
313
|
+
}
|
|
314
|
+
.feature-title {
|
|
315
|
+
font-family: 'Space Grotesk', sans-serif;
|
|
316
|
+
font-size: 1.1rem;
|
|
317
|
+
font-weight: 700;
|
|
318
|
+
color: var(--black);
|
|
319
|
+
margin-bottom: 10px;
|
|
320
|
+
letter-spacing: -0.02em;
|
|
321
|
+
}
|
|
322
|
+
.feature-desc {
|
|
323
|
+
font-size: 0.88rem;
|
|
324
|
+
color: var(--muted);
|
|
325
|
+
line-height: 1.65;
|
|
326
|
+
}
|
|
327
|
+
.feature-tag {
|
|
328
|
+
display: inline-block;
|
|
329
|
+
margin-top: 16px;
|
|
330
|
+
font-family: 'JetBrains Mono', monospace;
|
|
331
|
+
font-size: 0.68rem;
|
|
332
|
+
font-weight: 600;
|
|
333
|
+
text-transform: uppercase;
|
|
334
|
+
letter-spacing: 0.08em;
|
|
335
|
+
padding: 4px 10px;
|
|
336
|
+
border: 2px solid var(--black);
|
|
337
|
+
border-radius: 9999px;
|
|
338
|
+
color: var(--black);
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
/* === PRICING === */
|
|
342
|
+
.pricing-section {
|
|
343
|
+
padding: 96px 0;
|
|
344
|
+
border-bottom: 3px solid var(--black);
|
|
345
|
+
}
|
|
346
|
+
.pricing-grid {
|
|
347
|
+
display: grid;
|
|
348
|
+
grid-template-columns: 1fr 1fr;
|
|
349
|
+
gap: 24px;
|
|
350
|
+
}
|
|
351
|
+
.pricing-card {
|
|
352
|
+
background: var(--white);
|
|
353
|
+
border: 2px solid var(--black);
|
|
354
|
+
box-shadow: var(--shadow-card);
|
|
355
|
+
overflow: hidden;
|
|
356
|
+
}
|
|
357
|
+
.pricing-card.featured {
|
|
358
|
+
border: 3px solid var(--black);
|
|
359
|
+
box-shadow: 8px 8px 0 var(--black);
|
|
360
|
+
}
|
|
361
|
+
.pricing-header {
|
|
362
|
+
padding: 24px 28px;
|
|
363
|
+
border-bottom: 2px solid var(--black);
|
|
364
|
+
}
|
|
365
|
+
.pricing-card.featured .pricing-header {
|
|
366
|
+
background: var(--yellow);
|
|
367
|
+
}
|
|
368
|
+
.pricing-name {
|
|
369
|
+
font-family: 'Space Grotesk', sans-serif;
|
|
370
|
+
font-size: 1rem;
|
|
371
|
+
font-weight: 700;
|
|
372
|
+
letter-spacing: -0.01em;
|
|
373
|
+
margin-bottom: 8px;
|
|
374
|
+
}
|
|
375
|
+
.pricing-price {
|
|
376
|
+
font-family: 'JetBrains Mono', monospace;
|
|
377
|
+
font-size: 2.2rem;
|
|
378
|
+
font-weight: 700;
|
|
379
|
+
letter-spacing: -0.02em;
|
|
380
|
+
}
|
|
381
|
+
.pricing-price span {
|
|
382
|
+
font-size: 0.9rem;
|
|
383
|
+
font-weight: 400;
|
|
384
|
+
color: var(--muted);
|
|
385
|
+
}
|
|
386
|
+
.pricing-body { padding: 28px; }
|
|
387
|
+
.pricing-features {
|
|
388
|
+
list-style: none;
|
|
389
|
+
margin-bottom: 24px;
|
|
390
|
+
display: flex;
|
|
391
|
+
flex-direction: column;
|
|
392
|
+
gap: 10px;
|
|
393
|
+
}
|
|
394
|
+
.pricing-features li {
|
|
395
|
+
font-size: 0.88rem;
|
|
396
|
+
color: var(--muted);
|
|
397
|
+
display: flex;
|
|
398
|
+
align-items: center;
|
|
399
|
+
gap: 10px;
|
|
400
|
+
font-family: 'JetBrains Mono', monospace;
|
|
401
|
+
}
|
|
402
|
+
.pricing-features li::before {
|
|
403
|
+
content: '→';
|
|
404
|
+
color: var(--black);
|
|
405
|
+
font-weight: 700;
|
|
406
|
+
flex-shrink: 0;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
/* === FOOTER === */
|
|
410
|
+
footer {
|
|
411
|
+
background: var(--black);
|
|
412
|
+
border-top: 3px solid var(--black);
|
|
413
|
+
padding: 48px 0;
|
|
414
|
+
}
|
|
415
|
+
.footer-inner {
|
|
416
|
+
max-width: 1160px;
|
|
417
|
+
margin: 0 auto;
|
|
418
|
+
padding: 0 24px;
|
|
419
|
+
display: flex;
|
|
420
|
+
justify-content: space-between;
|
|
421
|
+
align-items: center;
|
|
422
|
+
flex-wrap: wrap;
|
|
423
|
+
gap: 24px;
|
|
424
|
+
}
|
|
425
|
+
.footer-logo {
|
|
426
|
+
font-family: 'Space Grotesk', sans-serif;
|
|
427
|
+
font-size: 1.4rem;
|
|
428
|
+
font-weight: 800;
|
|
429
|
+
letter-spacing: -0.04em;
|
|
430
|
+
color: var(--yellow);
|
|
431
|
+
}
|
|
432
|
+
.footer-links {
|
|
433
|
+
display: flex;
|
|
434
|
+
gap: 28px;
|
|
435
|
+
flex-wrap: wrap;
|
|
436
|
+
}
|
|
437
|
+
.footer-links a {
|
|
438
|
+
font-family: 'JetBrains Mono', monospace;
|
|
439
|
+
font-size: 0.72rem;
|
|
440
|
+
text-transform: uppercase;
|
|
441
|
+
letter-spacing: 0.08em;
|
|
442
|
+
color: #888;
|
|
443
|
+
text-decoration: none;
|
|
444
|
+
transition: color 0.15s;
|
|
445
|
+
}
|
|
446
|
+
.footer-links a:hover { color: var(--yellow); }
|
|
447
|
+
.footer-copy {
|
|
448
|
+
font-family: 'JetBrains Mono', monospace;
|
|
449
|
+
font-size: 0.7rem;
|
|
450
|
+
color: #555;
|
|
451
|
+
text-transform: uppercase;
|
|
452
|
+
letter-spacing: 0.06em;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
@media (max-width: 768px) {
|
|
456
|
+
.features-grid, .pricing-grid { grid-template-columns: 1fr; }
|
|
457
|
+
.stats-bar-inner { grid-template-columns: 1fr; }
|
|
458
|
+
.stat-item { border-right: none; border-bottom: 3px solid var(--black); }
|
|
459
|
+
.stat-item:last-child { border-bottom: none; }
|
|
460
|
+
.nav-links { display: none; }
|
|
461
|
+
}
|
|
462
|
+
</style>
|
|
463
|
+
</head>
|
|
464
|
+
<body>
|
|
465
|
+
|
|
466
|
+
<!-- NAV -->
|
|
467
|
+
<nav>
|
|
468
|
+
<div class="nav-inner">
|
|
469
|
+
<div class="logo">DRFT<span class="logo-dot"></span></div>
|
|
470
|
+
<ul class="nav-links">
|
|
471
|
+
<li><a href="#">docs</a></li>
|
|
472
|
+
<li><a href="#">pricing</a></li>
|
|
473
|
+
<li><a href="#">changelog</a></li>
|
|
474
|
+
</ul>
|
|
475
|
+
<button class="btn-yellow">GET DRFT FREE →</button>
|
|
476
|
+
</div>
|
|
477
|
+
</nav>
|
|
478
|
+
|
|
479
|
+
<!-- HERO -->
|
|
480
|
+
<section class="hero">
|
|
481
|
+
<div class="container">
|
|
482
|
+
<div class="hero-label">Git Workflow Automation · v2.4.1</div>
|
|
483
|
+
<h1>SHIP CODE.<br /><em>NOT MEETINGS.</em></h1>
|
|
484
|
+
<p class="hero-sub">DRFT automates your entire Git workflow — from branch naming to PR creation, changelog generation, and release tagging. Stop context-switching. Start shipping.</p>
|
|
485
|
+
<div class="hero-ctas">
|
|
486
|
+
<button class="btn-yellow btn-large">Install in 30 seconds</button>
|
|
487
|
+
<button class="btn-ghost btn-large">Read the docs</button>
|
|
488
|
+
</div>
|
|
489
|
+
|
|
490
|
+
<!-- Terminal -->
|
|
491
|
+
<div class="terminal">
|
|
492
|
+
<div class="terminal-bar">
|
|
493
|
+
<div class="t-dot red"></div>
|
|
494
|
+
<div class="t-dot yellow"></div>
|
|
495
|
+
<div class="t-dot green"></div>
|
|
496
|
+
<div class="terminal-title">bash · ~/my-project</div>
|
|
497
|
+
</div>
|
|
498
|
+
<div class="terminal-body">
|
|
499
|
+
<div><span class="t-prompt">$</span> <span class="t-cmd">npm install -g drft</span></div>
|
|
500
|
+
<div><span class="t-dim">✓ installed drft@2.4.1 globally</span></div>
|
|
501
|
+
<br />
|
|
502
|
+
<div><span class="t-prompt">$</span> <span class="t-cmd">drft init</span></div>
|
|
503
|
+
<div><span class="t-success">✓ Detected GitHub remote</span></div>
|
|
504
|
+
<div><span class="t-success">✓ Conventional commits enabled</span></div>
|
|
505
|
+
<div><span class="t-success">✓ Auto-PR template configured</span></div>
|
|
506
|
+
<br />
|
|
507
|
+
<div><span class="t-prompt">$</span> <span class="t-cmd">drft ship</span> <span class="t-string">"add user auth"</span></div>
|
|
508
|
+
<div><span class="t-comment"># → branch: feat/add-user-auth-8f2c</span></div>
|
|
509
|
+
<div><span class="t-comment"># → commit: feat: add user auth</span></div>
|
|
510
|
+
<div><span class="t-comment"># → PR #47: opened · 2 reviewers assigned</span></div>
|
|
511
|
+
<div><span class="t-success">✓ Done in <span class="t-num">1.2s</span></span></div>
|
|
512
|
+
</div>
|
|
513
|
+
</div>
|
|
514
|
+
</div>
|
|
515
|
+
</section>
|
|
516
|
+
|
|
517
|
+
<!-- STATS BAR -->
|
|
518
|
+
<div class="stats-bar">
|
|
519
|
+
<div class="stats-bar-inner">
|
|
520
|
+
<div class="stat-item">
|
|
521
|
+
<span class="stat-num">47K+</span>
|
|
522
|
+
<span class="stat-lbl">ACTIVE REPOS</span>
|
|
523
|
+
</div>
|
|
524
|
+
<div class="stat-item">
|
|
525
|
+
<span class="stat-num">12M+</span>
|
|
526
|
+
<span class="stat-lbl">DEPLOYS SHIPPED</span>
|
|
527
|
+
</div>
|
|
528
|
+
<div class="stat-item">
|
|
529
|
+
<span class="stat-num">< 200ms</span>
|
|
530
|
+
<span class="stat-lbl">CLI RESPONSE TIME</span>
|
|
531
|
+
</div>
|
|
532
|
+
</div>
|
|
533
|
+
</div>
|
|
534
|
+
|
|
535
|
+
<!-- FEATURES -->
|
|
536
|
+
<section class="features-section">
|
|
537
|
+
<div class="container">
|
|
538
|
+
<div class="section-overline">// core features</div>
|
|
539
|
+
<div class="section-title">One command.<br />Everything done.</div>
|
|
540
|
+
<div class="features-grid">
|
|
541
|
+
<div class="feature-card">
|
|
542
|
+
<span class="feature-num">01</span>
|
|
543
|
+
<div class="feature-title">Smart Branch Creation</div>
|
|
544
|
+
<p class="feature-desc">Describe what you're building in plain English. DRFT creates the right branch name, linked to your issue tracker, in one shot.</p>
|
|
545
|
+
<span class="feature-tag">branch · jira · linear</span>
|
|
546
|
+
</div>
|
|
547
|
+
<div class="feature-card">
|
|
548
|
+
<span class="feature-num">02</span>
|
|
549
|
+
<div class="feature-title">Auto PR with Context</div>
|
|
550
|
+
<p class="feature-desc">Generates PR descriptions from your diff — what changed, why it changed, and how to test it. No more blank PR templates.</p>
|
|
551
|
+
<span class="feature-tag">gh · gitlab · bitbucket</span>
|
|
552
|
+
</div>
|
|
553
|
+
<div class="feature-card">
|
|
554
|
+
<span class="feature-num">03</span>
|
|
555
|
+
<div class="feature-title">Zero-Config Releases</div>
|
|
556
|
+
<p class="feature-desc">Semantic versioning, changelog generation, and tag publishing — all from one command. Works with monorepos.</p>
|
|
557
|
+
<span class="feature-tag">semver · changelog · tags</span>
|
|
558
|
+
</div>
|
|
559
|
+
</div>
|
|
560
|
+
</div>
|
|
561
|
+
</section>
|
|
562
|
+
|
|
563
|
+
<!-- PRICING -->
|
|
564
|
+
<section class="pricing-section">
|
|
565
|
+
<div class="container">
|
|
566
|
+
<div class="section-overline">// pricing</div>
|
|
567
|
+
<div class="section-title">Simple. No tricks.</div>
|
|
568
|
+
<div class="pricing-grid">
|
|
569
|
+
<div class="pricing-card">
|
|
570
|
+
<div class="pricing-header">
|
|
571
|
+
<div class="pricing-name">INDIE</div>
|
|
572
|
+
<div class="pricing-price">$0 <span>/ forever</span></div>
|
|
573
|
+
</div>
|
|
574
|
+
<div class="pricing-body">
|
|
575
|
+
<ul class="pricing-features">
|
|
576
|
+
<li>Unlimited repos</li>
|
|
577
|
+
<li>Smart branch creation</li>
|
|
578
|
+
<li>Auto PR descriptions</li>
|
|
579
|
+
<li>GitHub + GitLab</li>
|
|
580
|
+
<li>CLI only</li>
|
|
581
|
+
</ul>
|
|
582
|
+
<button class="btn-ghost" style="width:100%;">Start Free →</button>
|
|
583
|
+
</div>
|
|
584
|
+
</div>
|
|
585
|
+
<div class="pricing-card featured">
|
|
586
|
+
<div class="pricing-header">
|
|
587
|
+
<div class="pricing-name">TEAM</div>
|
|
588
|
+
<div class="pricing-price">$12 <span>/ seat / mo</span></div>
|
|
589
|
+
</div>
|
|
590
|
+
<div class="pricing-body">
|
|
591
|
+
<ul class="pricing-features">
|
|
592
|
+
<li>Everything in Indie</li>
|
|
593
|
+
<li>Shared team templates</li>
|
|
594
|
+
<li>Release automation</li>
|
|
595
|
+
<li>Slack notifications</li>
|
|
596
|
+
<li>Priority support</li>
|
|
597
|
+
</ul>
|
|
598
|
+
<button class="btn-yellow" style="width:100%;">Get Team Plan →</button>
|
|
599
|
+
</div>
|
|
600
|
+
</div>
|
|
601
|
+
</div>
|
|
602
|
+
</div>
|
|
603
|
+
</section>
|
|
604
|
+
|
|
605
|
+
<!-- FOOTER -->
|
|
606
|
+
<footer>
|
|
607
|
+
<div class="footer-inner">
|
|
608
|
+
<div class="footer-logo">DRFT</div>
|
|
609
|
+
<div class="footer-links">
|
|
610
|
+
<a href="#">docs</a>
|
|
611
|
+
<a href="#">changelog</a>
|
|
612
|
+
<a href="#">github</a>
|
|
613
|
+
<a href="#">privacy</a>
|
|
614
|
+
<a href="#">status</a>
|
|
615
|
+
</div>
|
|
616
|
+
<div class="footer-copy">© 2025 DRFT LABS · MIT LICENSE</div>
|
|
617
|
+
</div>
|
|
618
|
+
</footer>
|
|
619
|
+
|
|
620
|
+
</body>
|
|
621
|
+
</html>
|