solokit 0.1.1__py3-none-any.whl
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.
- solokit/__init__.py +10 -0
- solokit/__version__.py +3 -0
- solokit/cli.py +374 -0
- solokit/core/__init__.py +1 -0
- solokit/core/cache.py +102 -0
- solokit/core/command_runner.py +278 -0
- solokit/core/config.py +453 -0
- solokit/core/config_validator.py +204 -0
- solokit/core/constants.py +291 -0
- solokit/core/error_formatter.py +279 -0
- solokit/core/error_handlers.py +346 -0
- solokit/core/exceptions.py +1567 -0
- solokit/core/file_ops.py +309 -0
- solokit/core/logging_config.py +166 -0
- solokit/core/output.py +99 -0
- solokit/core/performance.py +57 -0
- solokit/core/protocols.py +141 -0
- solokit/core/types.py +312 -0
- solokit/deployment/__init__.py +1 -0
- solokit/deployment/executor.py +411 -0
- solokit/git/__init__.py +1 -0
- solokit/git/integration.py +619 -0
- solokit/init/__init__.py +41 -0
- solokit/init/claude_commands_installer.py +87 -0
- solokit/init/dependency_installer.py +313 -0
- solokit/init/docs_structure.py +90 -0
- solokit/init/env_generator.py +160 -0
- solokit/init/environment_validator.py +334 -0
- solokit/init/git_hooks_installer.py +71 -0
- solokit/init/git_setup.py +188 -0
- solokit/init/gitignore_updater.py +195 -0
- solokit/init/initial_commit.py +145 -0
- solokit/init/initial_scans.py +109 -0
- solokit/init/orchestrator.py +246 -0
- solokit/init/readme_generator.py +207 -0
- solokit/init/session_structure.py +239 -0
- solokit/init/template_installer.py +424 -0
- solokit/learning/__init__.py +1 -0
- solokit/learning/archiver.py +115 -0
- solokit/learning/categorizer.py +126 -0
- solokit/learning/curator.py +428 -0
- solokit/learning/extractor.py +352 -0
- solokit/learning/reporter.py +351 -0
- solokit/learning/repository.py +254 -0
- solokit/learning/similarity.py +342 -0
- solokit/learning/validator.py +144 -0
- solokit/project/__init__.py +1 -0
- solokit/project/init.py +1162 -0
- solokit/project/stack.py +436 -0
- solokit/project/sync_plugin.py +438 -0
- solokit/project/tree.py +375 -0
- solokit/quality/__init__.py +1 -0
- solokit/quality/api_validator.py +424 -0
- solokit/quality/checkers/__init__.py +25 -0
- solokit/quality/checkers/base.py +114 -0
- solokit/quality/checkers/context7.py +221 -0
- solokit/quality/checkers/custom.py +162 -0
- solokit/quality/checkers/deployment.py +323 -0
- solokit/quality/checkers/documentation.py +179 -0
- solokit/quality/checkers/formatting.py +161 -0
- solokit/quality/checkers/integration.py +394 -0
- solokit/quality/checkers/linting.py +159 -0
- solokit/quality/checkers/security.py +261 -0
- solokit/quality/checkers/spec_completeness.py +127 -0
- solokit/quality/checkers/tests.py +184 -0
- solokit/quality/env_validator.py +306 -0
- solokit/quality/gates.py +655 -0
- solokit/quality/reporters/__init__.py +10 -0
- solokit/quality/reporters/base.py +25 -0
- solokit/quality/reporters/console.py +98 -0
- solokit/quality/reporters/json_reporter.py +34 -0
- solokit/quality/results.py +98 -0
- solokit/session/__init__.py +1 -0
- solokit/session/briefing/__init__.py +245 -0
- solokit/session/briefing/documentation_loader.py +53 -0
- solokit/session/briefing/formatter.py +476 -0
- solokit/session/briefing/git_context.py +282 -0
- solokit/session/briefing/learning_loader.py +212 -0
- solokit/session/briefing/milestone_builder.py +78 -0
- solokit/session/briefing/orchestrator.py +137 -0
- solokit/session/briefing/stack_detector.py +51 -0
- solokit/session/briefing/tree_generator.py +52 -0
- solokit/session/briefing/work_item_loader.py +209 -0
- solokit/session/briefing.py +353 -0
- solokit/session/complete.py +1188 -0
- solokit/session/status.py +246 -0
- solokit/session/validate.py +452 -0
- solokit/templates/.claude/commands/end.md +109 -0
- solokit/templates/.claude/commands/init.md +159 -0
- solokit/templates/.claude/commands/learn-curate.md +88 -0
- solokit/templates/.claude/commands/learn-search.md +62 -0
- solokit/templates/.claude/commands/learn-show.md +69 -0
- solokit/templates/.claude/commands/learn.md +136 -0
- solokit/templates/.claude/commands/start.md +114 -0
- solokit/templates/.claude/commands/status.md +22 -0
- solokit/templates/.claude/commands/validate.md +27 -0
- solokit/templates/.claude/commands/work-delete.md +119 -0
- solokit/templates/.claude/commands/work-graph.md +139 -0
- solokit/templates/.claude/commands/work-list.md +26 -0
- solokit/templates/.claude/commands/work-new.md +114 -0
- solokit/templates/.claude/commands/work-next.md +25 -0
- solokit/templates/.claude/commands/work-show.md +24 -0
- solokit/templates/.claude/commands/work-update.md +141 -0
- solokit/templates/CHANGELOG.md +17 -0
- solokit/templates/WORK_ITEM_TYPES.md +141 -0
- solokit/templates/__init__.py +1 -0
- solokit/templates/bug_spec.md +217 -0
- solokit/templates/config.schema.json +150 -0
- solokit/templates/dashboard_refine/base/.gitignore +36 -0
- solokit/templates/dashboard_refine/base/app/(dashboard)/layout.tsx +22 -0
- solokit/templates/dashboard_refine/base/app/(dashboard)/page.tsx +68 -0
- solokit/templates/dashboard_refine/base/app/(dashboard)/users/page.tsx +77 -0
- solokit/templates/dashboard_refine/base/app/globals.css +60 -0
- solokit/templates/dashboard_refine/base/app/layout.tsx +23 -0
- solokit/templates/dashboard_refine/base/app/page.tsx +9 -0
- solokit/templates/dashboard_refine/base/components/client-refine-wrapper.tsx +21 -0
- solokit/templates/dashboard_refine/base/components/layout/header.tsx +44 -0
- solokit/templates/dashboard_refine/base/components/layout/sidebar.tsx +82 -0
- solokit/templates/dashboard_refine/base/components/ui/button.tsx +53 -0
- solokit/templates/dashboard_refine/base/components/ui/card.tsx +78 -0
- solokit/templates/dashboard_refine/base/components/ui/table.tsx +116 -0
- solokit/templates/dashboard_refine/base/components.json +16 -0
- solokit/templates/dashboard_refine/base/lib/refine.tsx +65 -0
- solokit/templates/dashboard_refine/base/lib/utils.ts +13 -0
- solokit/templates/dashboard_refine/base/next.config.ts +10 -0
- solokit/templates/dashboard_refine/base/package.json.template +40 -0
- solokit/templates/dashboard_refine/base/postcss.config.mjs +8 -0
- solokit/templates/dashboard_refine/base/providers/refine-provider.tsx +26 -0
- solokit/templates/dashboard_refine/base/tailwind.config.ts +57 -0
- solokit/templates/dashboard_refine/base/tsconfig.json +27 -0
- solokit/templates/dashboard_refine/docker/Dockerfile +57 -0
- solokit/templates/dashboard_refine/docker/docker-compose.prod.yml +31 -0
- solokit/templates/dashboard_refine/docker/docker-compose.yml +21 -0
- solokit/templates/dashboard_refine/tier-1-essential/.eslintrc.json +7 -0
- solokit/templates/dashboard_refine/tier-1-essential/jest.config.ts +17 -0
- solokit/templates/dashboard_refine/tier-1-essential/jest.setup.ts +1 -0
- solokit/templates/dashboard_refine/tier-1-essential/package.json.tier1.template +57 -0
- solokit/templates/dashboard_refine/tier-1-essential/tests/setup.ts +26 -0
- solokit/templates/dashboard_refine/tier-1-essential/tests/unit/example.test.tsx +73 -0
- solokit/templates/dashboard_refine/tier-2-standard/package.json.tier2.template +62 -0
- solokit/templates/dashboard_refine/tier-3-comprehensive/eslint.config.mjs +22 -0
- solokit/templates/dashboard_refine/tier-3-comprehensive/package.json.tier3.template +79 -0
- solokit/templates/dashboard_refine/tier-3-comprehensive/playwright.config.ts +66 -0
- solokit/templates/dashboard_refine/tier-3-comprehensive/stryker.conf.json +38 -0
- solokit/templates/dashboard_refine/tier-3-comprehensive/tests/e2e/dashboard.spec.ts +88 -0
- solokit/templates/dashboard_refine/tier-3-comprehensive/tests/e2e/user-management.spec.ts +102 -0
- solokit/templates/dashboard_refine/tier-3-comprehensive/tests/integration/dashboard.test.tsx +90 -0
- solokit/templates/dashboard_refine/tier-3-comprehensive/type-coverage.json +16 -0
- solokit/templates/dashboard_refine/tier-4-production/instrumentation.ts +9 -0
- solokit/templates/dashboard_refine/tier-4-production/k6/dashboard-load-test.js +70 -0
- solokit/templates/dashboard_refine/tier-4-production/next.config.ts +46 -0
- solokit/templates/dashboard_refine/tier-4-production/package.json.tier4.template +89 -0
- solokit/templates/dashboard_refine/tier-4-production/sentry.client.config.ts +26 -0
- solokit/templates/dashboard_refine/tier-4-production/sentry.edge.config.ts +11 -0
- solokit/templates/dashboard_refine/tier-4-production/sentry.server.config.ts +11 -0
- solokit/templates/deployment_spec.md +500 -0
- solokit/templates/feature_spec.md +248 -0
- solokit/templates/fullstack_nextjs/base/.gitignore +36 -0
- solokit/templates/fullstack_nextjs/base/app/api/example/route.ts +65 -0
- solokit/templates/fullstack_nextjs/base/app/globals.css +27 -0
- solokit/templates/fullstack_nextjs/base/app/layout.tsx +20 -0
- solokit/templates/fullstack_nextjs/base/app/page.tsx +32 -0
- solokit/templates/fullstack_nextjs/base/components/example-component.tsx +20 -0
- solokit/templates/fullstack_nextjs/base/lib/prisma.ts +17 -0
- solokit/templates/fullstack_nextjs/base/lib/utils.ts +13 -0
- solokit/templates/fullstack_nextjs/base/lib/validations.ts +20 -0
- solokit/templates/fullstack_nextjs/base/next.config.ts +7 -0
- solokit/templates/fullstack_nextjs/base/package.json.template +32 -0
- solokit/templates/fullstack_nextjs/base/postcss.config.mjs +8 -0
- solokit/templates/fullstack_nextjs/base/prisma/schema.prisma +21 -0
- solokit/templates/fullstack_nextjs/base/tailwind.config.ts +19 -0
- solokit/templates/fullstack_nextjs/base/tsconfig.json +27 -0
- solokit/templates/fullstack_nextjs/docker/Dockerfile +60 -0
- solokit/templates/fullstack_nextjs/docker/docker-compose.prod.yml +57 -0
- solokit/templates/fullstack_nextjs/docker/docker-compose.yml +47 -0
- solokit/templates/fullstack_nextjs/tier-1-essential/.eslintrc.json +7 -0
- solokit/templates/fullstack_nextjs/tier-1-essential/jest.config.ts +17 -0
- solokit/templates/fullstack_nextjs/tier-1-essential/jest.setup.ts +1 -0
- solokit/templates/fullstack_nextjs/tier-1-essential/package.json.tier1.template +48 -0
- solokit/templates/fullstack_nextjs/tier-1-essential/tests/api/example.test.ts +88 -0
- solokit/templates/fullstack_nextjs/tier-1-essential/tests/setup.ts +22 -0
- solokit/templates/fullstack_nextjs/tier-1-essential/tests/unit/example.test.tsx +22 -0
- solokit/templates/fullstack_nextjs/tier-2-standard/package.json.tier2.template +52 -0
- solokit/templates/fullstack_nextjs/tier-3-comprehensive/eslint.config.mjs +39 -0
- solokit/templates/fullstack_nextjs/tier-3-comprehensive/package.json.tier3.template +68 -0
- solokit/templates/fullstack_nextjs/tier-3-comprehensive/playwright.config.ts +66 -0
- solokit/templates/fullstack_nextjs/tier-3-comprehensive/stryker.conf.json +33 -0
- solokit/templates/fullstack_nextjs/tier-3-comprehensive/tests/e2e/flow.spec.ts +59 -0
- solokit/templates/fullstack_nextjs/tier-3-comprehensive/tests/integration/api.test.ts +165 -0
- solokit/templates/fullstack_nextjs/tier-3-comprehensive/type-coverage.json +12 -0
- solokit/templates/fullstack_nextjs/tier-4-production/instrumentation.ts +9 -0
- solokit/templates/fullstack_nextjs/tier-4-production/k6/load-test.js +45 -0
- solokit/templates/fullstack_nextjs/tier-4-production/next.config.ts +46 -0
- solokit/templates/fullstack_nextjs/tier-4-production/package.json.tier4.template +77 -0
- solokit/templates/fullstack_nextjs/tier-4-production/sentry.client.config.ts +26 -0
- solokit/templates/fullstack_nextjs/tier-4-production/sentry.edge.config.ts +11 -0
- solokit/templates/fullstack_nextjs/tier-4-production/sentry.server.config.ts +11 -0
- solokit/templates/git-hooks/prepare-commit-msg +24 -0
- solokit/templates/integration_test_spec.md +363 -0
- solokit/templates/learnings.json +15 -0
- solokit/templates/ml_ai_fastapi/base/.gitignore +104 -0
- solokit/templates/ml_ai_fastapi/base/alembic/env.py +96 -0
- solokit/templates/ml_ai_fastapi/base/alembic.ini +114 -0
- solokit/templates/ml_ai_fastapi/base/pyproject.toml.template +91 -0
- solokit/templates/ml_ai_fastapi/base/requirements.txt.template +28 -0
- solokit/templates/ml_ai_fastapi/base/src/__init__.py +5 -0
- solokit/templates/ml_ai_fastapi/base/src/api/__init__.py +3 -0
- solokit/templates/ml_ai_fastapi/base/src/api/dependencies.py +20 -0
- solokit/templates/ml_ai_fastapi/base/src/api/routes/__init__.py +3 -0
- solokit/templates/ml_ai_fastapi/base/src/api/routes/example.py +134 -0
- solokit/templates/ml_ai_fastapi/base/src/api/routes/health.py +66 -0
- solokit/templates/ml_ai_fastapi/base/src/core/__init__.py +3 -0
- solokit/templates/ml_ai_fastapi/base/src/core/config.py +64 -0
- solokit/templates/ml_ai_fastapi/base/src/core/database.py +50 -0
- solokit/templates/ml_ai_fastapi/base/src/main.py +64 -0
- solokit/templates/ml_ai_fastapi/base/src/models/__init__.py +7 -0
- solokit/templates/ml_ai_fastapi/base/src/models/example.py +61 -0
- solokit/templates/ml_ai_fastapi/base/src/services/__init__.py +3 -0
- solokit/templates/ml_ai_fastapi/base/src/services/example.py +115 -0
- solokit/templates/ml_ai_fastapi/docker/Dockerfile +59 -0
- solokit/templates/ml_ai_fastapi/docker/docker-compose.prod.yml +112 -0
- solokit/templates/ml_ai_fastapi/docker/docker-compose.yml +77 -0
- solokit/templates/ml_ai_fastapi/tier-1-essential/pyproject.toml.tier1.template +112 -0
- solokit/templates/ml_ai_fastapi/tier-1-essential/pyrightconfig.json +41 -0
- solokit/templates/ml_ai_fastapi/tier-1-essential/pytest.ini +69 -0
- solokit/templates/ml_ai_fastapi/tier-1-essential/requirements-dev.txt +17 -0
- solokit/templates/ml_ai_fastapi/tier-1-essential/ruff.toml +81 -0
- solokit/templates/ml_ai_fastapi/tier-1-essential/tests/__init__.py +3 -0
- solokit/templates/ml_ai_fastapi/tier-1-essential/tests/conftest.py +72 -0
- solokit/templates/ml_ai_fastapi/tier-1-essential/tests/test_main.py +49 -0
- solokit/templates/ml_ai_fastapi/tier-1-essential/tests/unit/__init__.py +3 -0
- solokit/templates/ml_ai_fastapi/tier-1-essential/tests/unit/test_example.py +113 -0
- solokit/templates/ml_ai_fastapi/tier-2-standard/pyproject.toml.tier2.template +130 -0
- solokit/templates/ml_ai_fastapi/tier-3-comprehensive/locustfile.py +99 -0
- solokit/templates/ml_ai_fastapi/tier-3-comprehensive/mutmut_config.py +53 -0
- solokit/templates/ml_ai_fastapi/tier-3-comprehensive/pyproject.toml.tier3.template +150 -0
- solokit/templates/ml_ai_fastapi/tier-3-comprehensive/tests/integration/__init__.py +3 -0
- solokit/templates/ml_ai_fastapi/tier-3-comprehensive/tests/integration/conftest.py +74 -0
- solokit/templates/ml_ai_fastapi/tier-3-comprehensive/tests/integration/test_api.py +131 -0
- solokit/templates/ml_ai_fastapi/tier-4-production/pyproject.toml.tier4.template +162 -0
- solokit/templates/ml_ai_fastapi/tier-4-production/requirements-prod.txt +25 -0
- solokit/templates/ml_ai_fastapi/tier-4-production/src/api/routes/metrics.py +19 -0
- solokit/templates/ml_ai_fastapi/tier-4-production/src/core/logging.py +74 -0
- solokit/templates/ml_ai_fastapi/tier-4-production/src/core/monitoring.py +68 -0
- solokit/templates/ml_ai_fastapi/tier-4-production/src/core/sentry.py +66 -0
- solokit/templates/ml_ai_fastapi/tier-4-production/src/middleware/__init__.py +3 -0
- solokit/templates/ml_ai_fastapi/tier-4-production/src/middleware/logging.py +79 -0
- solokit/templates/ml_ai_fastapi/tier-4-production/src/middleware/tracing.py +60 -0
- solokit/templates/refactor_spec.md +287 -0
- solokit/templates/saas_t3/base/.gitignore +36 -0
- solokit/templates/saas_t3/base/app/api/trpc/[trpc]/route.ts +33 -0
- solokit/templates/saas_t3/base/app/globals.css +27 -0
- solokit/templates/saas_t3/base/app/layout.tsx +23 -0
- solokit/templates/saas_t3/base/app/page.tsx +31 -0
- solokit/templates/saas_t3/base/lib/api.tsx +77 -0
- solokit/templates/saas_t3/base/lib/utils.ts +13 -0
- solokit/templates/saas_t3/base/next.config.ts +7 -0
- solokit/templates/saas_t3/base/package.json.template +38 -0
- solokit/templates/saas_t3/base/postcss.config.mjs +8 -0
- solokit/templates/saas_t3/base/prisma/schema.prisma +20 -0
- solokit/templates/saas_t3/base/server/api/root.ts +19 -0
- solokit/templates/saas_t3/base/server/api/routers/example.ts +28 -0
- solokit/templates/saas_t3/base/server/api/trpc.ts +52 -0
- solokit/templates/saas_t3/base/server/db.ts +17 -0
- solokit/templates/saas_t3/base/tailwind.config.ts +19 -0
- solokit/templates/saas_t3/base/tsconfig.json +27 -0
- solokit/templates/saas_t3/docker/Dockerfile +60 -0
- solokit/templates/saas_t3/docker/docker-compose.prod.yml +59 -0
- solokit/templates/saas_t3/docker/docker-compose.yml +49 -0
- solokit/templates/saas_t3/tier-1-essential/.eslintrc.json +7 -0
- solokit/templates/saas_t3/tier-1-essential/jest.config.ts +17 -0
- solokit/templates/saas_t3/tier-1-essential/jest.setup.ts +1 -0
- solokit/templates/saas_t3/tier-1-essential/package.json.tier1.template +54 -0
- solokit/templates/saas_t3/tier-1-essential/tests/setup.ts +22 -0
- solokit/templates/saas_t3/tier-1-essential/tests/unit/example.test.tsx +24 -0
- solokit/templates/saas_t3/tier-2-standard/package.json.tier2.template +58 -0
- solokit/templates/saas_t3/tier-3-comprehensive/eslint.config.mjs +39 -0
- solokit/templates/saas_t3/tier-3-comprehensive/package.json.tier3.template +74 -0
- solokit/templates/saas_t3/tier-3-comprehensive/playwright.config.ts +66 -0
- solokit/templates/saas_t3/tier-3-comprehensive/stryker.conf.json +34 -0
- solokit/templates/saas_t3/tier-3-comprehensive/tests/e2e/home.spec.ts +41 -0
- solokit/templates/saas_t3/tier-3-comprehensive/tests/integration/api.test.ts +44 -0
- solokit/templates/saas_t3/tier-3-comprehensive/type-coverage.json +12 -0
- solokit/templates/saas_t3/tier-4-production/instrumentation.ts +9 -0
- solokit/templates/saas_t3/tier-4-production/k6/load-test.js +51 -0
- solokit/templates/saas_t3/tier-4-production/next.config.ts +46 -0
- solokit/templates/saas_t3/tier-4-production/package.json.tier4.template +83 -0
- solokit/templates/saas_t3/tier-4-production/sentry.client.config.ts +26 -0
- solokit/templates/saas_t3/tier-4-production/sentry.edge.config.ts +11 -0
- solokit/templates/saas_t3/tier-4-production/sentry.server.config.ts +11 -0
- solokit/templates/saas_t3/tier-4-production/vercel.json +37 -0
- solokit/templates/security_spec.md +287 -0
- solokit/templates/stack-versions.yaml +617 -0
- solokit/templates/status_update.json +6 -0
- solokit/templates/template-registry.json +257 -0
- solokit/templates/work_items.json +11 -0
- solokit/testing/__init__.py +1 -0
- solokit/testing/integration_runner.py +550 -0
- solokit/testing/performance.py +637 -0
- solokit/visualization/__init__.py +1 -0
- solokit/visualization/dependency_graph.py +788 -0
- solokit/work_items/__init__.py +1 -0
- solokit/work_items/creator.py +217 -0
- solokit/work_items/delete.py +264 -0
- solokit/work_items/get_dependencies.py +185 -0
- solokit/work_items/get_dependents.py +113 -0
- solokit/work_items/get_metadata.py +121 -0
- solokit/work_items/get_next_recommendations.py +133 -0
- solokit/work_items/manager.py +235 -0
- solokit/work_items/milestones.py +137 -0
- solokit/work_items/query.py +376 -0
- solokit/work_items/repository.py +267 -0
- solokit/work_items/scheduler.py +184 -0
- solokit/work_items/spec_parser.py +838 -0
- solokit/work_items/spec_validator.py +493 -0
- solokit/work_items/updater.py +157 -0
- solokit/work_items/validator.py +205 -0
- solokit-0.1.1.dist-info/METADATA +640 -0
- solokit-0.1.1.dist-info/RECORD +323 -0
- solokit-0.1.1.dist-info/WHEEL +5 -0
- solokit-0.1.1.dist-info/entry_points.txt +2 -0
- solokit-0.1.1.dist-info/licenses/LICENSE +21 -0
- solokit-0.1.1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,323 @@
|
|
|
1
|
+
solokit/__init__.py,sha256=PS-tERHSZCSENM_tlx02B8cgG3UxpMts2uC6-x0Hvno,394
|
|
2
|
+
solokit/__version__.py,sha256=2-KGeOmPk3liA239I2hJ-0QprXW1V5Jnvc1HlK7ElTo,70
|
|
3
|
+
solokit/cli.py,sha256=wx220Leeo-bvFeT6BAYErVuXqGJIkAvK8BSSFsKwIIY,13683
|
|
4
|
+
solokit/core/__init__.py,sha256=nW4aUxn378kRDGwOPNJDcvJtGikE2vTA09q1fFs5zv4,92
|
|
5
|
+
solokit/core/cache.py,sha256=Nz2NwfWd5KtMOqSRAoCoxpmb4Hk1UiBk_JlnhHlQkbM,3109
|
|
6
|
+
solokit/core/command_runner.py,sha256=78BFRwwxSGULuy1JVqP2fokW28TdMtmuDL45sFbOuSA,8915
|
|
7
|
+
solokit/core/config.py,sha256=_u9410G-ua-ehgpakLitNh_jA2mIO6a5pcqwZajiAu0,15773
|
|
8
|
+
solokit/core/config_validator.py,sha256=PD1r8v3vZr_K4FNKDtMrTVVvNYh9yXxqNPNz8i-qb2U,6807
|
|
9
|
+
solokit/core/constants.py,sha256=I2aeDkV4eeyb-CEoq_dZ9HbIE5qxBVxWqVouLe_61xc,9394
|
|
10
|
+
solokit/core/error_formatter.py,sha256=Z6IuWgNnxy5BuKc3BCSj3q-H1wWXTe0rEaMy__FG_nI,8449
|
|
11
|
+
solokit/core/error_handlers.py,sha256=86-q69elI6ioh0Oej2--oLiI6Cw26yYqwXuXU3FtQeQ,11443
|
|
12
|
+
solokit/core/exceptions.py,sha256=6b2MCFuvPlGctqiFhu-9UYbmiqztehpbPV-psj3kKW8,46051
|
|
13
|
+
solokit/core/file_ops.py,sha256=TzGCYlX6Qx-R0AdyhbGeJnNIgg2tAg7myyvPNw-RjK4,9437
|
|
14
|
+
solokit/core/logging_config.py,sha256=V4DvAFt2e1fj1BcYKB3-DVWNfrlcfeihXjOdXghw1ak,4778
|
|
15
|
+
solokit/core/output.py,sha256=_ul3BNd-PBKZYEU47Q6ziOTFlrOJuYjlS1IEWPCVspI,2134
|
|
16
|
+
solokit/core/performance.py,sha256=mG21_0o7pa7qfdZ_Rt8C7AxnXZeHUQ0ua7x5DzNU6gs,1752
|
|
17
|
+
solokit/core/protocols.py,sha256=5L45iPgzHAzzRsVrmdCXGQe6ZLpALA7Br0HJ0pK8vYw,3524
|
|
18
|
+
solokit/core/types.py,sha256=Iho66d25GUQ1Ehhv-Lx1J0SCT54aK3NleDa9s6R1IY0,9300
|
|
19
|
+
solokit/deployment/__init__.py,sha256=HX-86J2pwWH7CbUd-zmOQsZWXMWt3U8ywbnRgWkxCwg,43
|
|
20
|
+
solokit/deployment/executor.py,sha256=185znDHKxxAaATXRUxGWgTzDvMoYcKaH4xSLjy05K8k,14408
|
|
21
|
+
solokit/git/__init__.py,sha256=rMQRPzwAK35wSsLN4lQ5xepWX-7a1xPmPUaHWPfrvF8,65
|
|
22
|
+
solokit/git/integration.py,sha256=BGTK6ViIxVTYSrXqbEuTMjc2FH0tqt3XhNlfZFJWm5M,23258
|
|
23
|
+
solokit/init/__init__.py,sha256=HI74qXVAD92Bah0-BTcG4sXHAujxZRxW70saUaywdmw,1389
|
|
24
|
+
solokit/init/claude_commands_installer.py,sha256=zw2qFnvzzF2F4lhDpiAG6C4eFMIryCuTWlPveZKjUXE,3019
|
|
25
|
+
solokit/init/dependency_installer.py,sha256=lLWMKiMrw2CHemaOJDD2WGkUOQonPKb4qpemp-NvoPk,9752
|
|
26
|
+
solokit/init/docs_structure.py,sha256=8RRWchLwdmuWbl7L6B4EJnrVvJXDAoXLSSWjQcZ2RA4,2501
|
|
27
|
+
solokit/init/env_generator.py,sha256=MaCEoVbQpQZw9-_h1Khk8UOogwEGWp-Exk1UnN9li2M,3702
|
|
28
|
+
solokit/init/environment_validator.py,sha256=rcVgDUP3uWRKzxMnDe7FSjZjCOL2hobvFPQxaCVFgEo,11686
|
|
29
|
+
solokit/init/git_hooks_installer.py,sha256=RHvr7T5FubRIuBKQ6wuW14Famc3JP9MC6qQ-opIpvWI,2063
|
|
30
|
+
solokit/init/git_setup.py,sha256=cZN2XYrKWx1ArcrNMIXGo4DikzPKT7NHj4aeh3VsFXk,6400
|
|
31
|
+
solokit/init/gitignore_updater.py,sha256=f0GXDA26_sZ97GWYwnyoer_LhFzj3cb5nCt0MTbQIsI,5769
|
|
32
|
+
solokit/init/initial_commit.py,sha256=fLFjJVvdRsTcw7WsMWcTCO7NFnhum4VZIBS2rBrfdT4,4348
|
|
33
|
+
solokit/init/initial_scans.py,sha256=fidv3v1iIhy9fDJq5ZHlgzqmSLWOAJQEis2GY8pwYDE,3025
|
|
34
|
+
solokit/init/orchestrator.py,sha256=okpLIhH_oDpKuzZQM7LomMLtHPlastAH-b9JgZBGJOE,9699
|
|
35
|
+
solokit/init/readme_generator.py,sha256=BntA67XOuxZcdnALcFs3K-PhluMBhLwaTZs-zrziUfk,5117
|
|
36
|
+
solokit/init/session_structure.py,sha256=A1ZY9lQYwGfa6XvdPE3dwyqgLion6rzmXbKbvoDCrBI,8032
|
|
37
|
+
solokit/init/template_installer.py,sha256=WeUuIWPkGDaEEdYoyjh3-LWfhmyLMqq5jYwHPx9ra3g,13272
|
|
38
|
+
solokit/learning/__init__.py,sha256=kr-3V7Z0XNRbJACP8rGyS2QklzShCJ2CYsaspB7b_aE,71
|
|
39
|
+
solokit/learning/archiver.py,sha256=FdxIGehQP7H7Ijww3juwLB2ntemFOQ1-rnlDaz0eiSA,4119
|
|
40
|
+
solokit/learning/categorizer.py,sha256=g1cZk485uXGZxVbUWhaISzMe1gDhNSsNQZAz4qXQDWc,3254
|
|
41
|
+
solokit/learning/curator.py,sha256=8aR4OdOSqLSQ_eYR1GOdAEtEgfvyqZEOhbReSyHDOxQ,16648
|
|
42
|
+
solokit/learning/extractor.py,sha256=yG7aGug1o4dxkShF3jvlYuwnNoxP_bn-Y9xUl6J6JjQ,14436
|
|
43
|
+
solokit/learning/reporter.py,sha256=LOUwIYNRe6705TZoPaCDLdlTUFeo0OT_LqXgcvWKZKs,12118
|
|
44
|
+
solokit/learning/repository.py,sha256=lwweajT-1RyH3PsHed-j7NbG11Z8A1mPZN6PKkwrMXM,7684
|
|
45
|
+
solokit/learning/similarity.py,sha256=1hqju2_ogmkGGI1-u9yZrk_nbzIdyzY3QXAtIHi3LoE,11475
|
|
46
|
+
solokit/learning/validator.py,sha256=ZFsL1t-yGX_DBW8ljR8-PSlFqE2QDwr85Fyj_HDPvu8,4783
|
|
47
|
+
solokit/project/__init__.py,sha256=6BxaWaLibyMpiws_SjlxVNiRfj9ItMOFoyMVEEVaQkY,86
|
|
48
|
+
solokit/project/init.py,sha256=R5bccmUEJDgPp_p285ei6rPI53fI90Pl8nBZuUugKbk,41735
|
|
49
|
+
solokit/project/stack.py,sha256=lmtOeUFb3P27dHTpiz7YJN2O2sIRnTyxXx1VqP9jM6E,15856
|
|
50
|
+
solokit/project/sync_plugin.py,sha256=GV8TFcWWcjM-eg3SB8ubjXUthQU0bFGpnpzXU4cCC1Y,14943
|
|
51
|
+
solokit/project/tree.py,sha256=w4q65Smy4pz5b0CYimawv5fz1ZJ4e5miP3i9VmpFSpc,12797
|
|
52
|
+
solokit/quality/__init__.py,sha256=PmM8iCM_ukFFEvFk_oNhsYuerWV5u2stUcoh6C3TFfc,61
|
|
53
|
+
solokit/quality/api_validator.py,sha256=X78A7zv3eTCgWJr3guMtR3ayBdeOu-GBb1gBGkpvhG8,14391
|
|
54
|
+
solokit/quality/env_validator.py,sha256=2wwiH4zNUuME01DzWyC6vVXLgMWXD2b6dC0viZGo8h4,10270
|
|
55
|
+
solokit/quality/gates.py,sha256=3D21oA2tt59Qomf6IVkK5ClLLQuEnIbyLzcve_DD468,24767
|
|
56
|
+
solokit/quality/results.py,sha256=wYWcI97vWYyd3GA2lBKXxX0S-OHYPiq5AxAH2xMLLiU,3382
|
|
57
|
+
solokit/quality/checkers/__init__.py,sha256=pkA6Cg466QAZ70_7txO8Hl79rhAA-Km5t00EINBkaQ0,868
|
|
58
|
+
solokit/quality/checkers/base.py,sha256=cpMwl3YvLKBIKhuRmf-JtnCP6zi08a-ZLVzwODVe3pQ,3485
|
|
59
|
+
solokit/quality/checkers/context7.py,sha256=H8AFenwQEapQ5pFIqV027oXbKF-VrWUW8XQVBgICIKQ,7440
|
|
60
|
+
solokit/quality/checkers/custom.py,sha256=AZbJeTedlcBWl9yOKWcSJrgMjFGseP2gsWpEeso-F2M,5723
|
|
61
|
+
solokit/quality/checkers/deployment.py,sha256=FI1H7dlDRqn9qBo0fNzJtuA0hIuXK3-IDKAVHTRsLAE,11411
|
|
62
|
+
solokit/quality/checkers/documentation.py,sha256=3PUPVvN97F10L-E-VhzHimwJiDXAs8CmhUuYYummC2I,6053
|
|
63
|
+
solokit/quality/checkers/formatting.py,sha256=VOIh0UX2iUXS11H9JJwc3mAH5cSsKUhXJ6UyWF2biK0,5517
|
|
64
|
+
solokit/quality/checkers/integration.py,sha256=sztRp1XpS7Xb1-KQhD0hr7AGYT8aXr2pFmAoFWzh-Zo,15600
|
|
65
|
+
solokit/quality/checkers/linting.py,sha256=g7Hs1GB2vEVd4LkKyztc46gSBxnz-k678hg26ZJJz_E,5433
|
|
66
|
+
solokit/quality/checkers/security.py,sha256=d5OXKII294PgmnCvbASuEB2AYCMGeY0zln0d4CpekNg,9390
|
|
67
|
+
solokit/quality/checkers/spec_completeness.py,sha256=bLSbHFwBRbbr18goQtconBu_MqMG-VLmEWDKeUpewxs,4504
|
|
68
|
+
solokit/quality/checkers/tests.py,sha256=f-HNH0fEul4LADSqH2Zjzyl4Ni07QbAWJq9zlsMyDgg,6662
|
|
69
|
+
solokit/quality/reporters/__init__.py,sha256=bn-DDWFXa6jwq-qfbE2hg8qRcIxgbjmcr3Y0xmSm12E,328
|
|
70
|
+
solokit/quality/reporters/base.py,sha256=iDfKVO2p7ActvEXhP5O00K1DfnZ4uKZDs2ESqlmDYAs,561
|
|
71
|
+
solokit/quality/reporters/console.py,sha256=E-PDMU5yvgffveBzf0B6fQk7Ey6ch52OJxrgqtTFsfs,3634
|
|
72
|
+
solokit/quality/reporters/json_reporter.py,sha256=YIaJvcChkR0rl9Z4kGgsGyBMoDxlI3nf5Tk77UCGNMw,810
|
|
73
|
+
solokit/session/__init__.py,sha256=ltgQz3c14pyfmlC4HMjqmHFmX9whgubHErbSti6DFIQ,47
|
|
74
|
+
solokit/session/briefing.py,sha256=AeBqL7hEeZKdO3Ezlvq8BcGB_0_-KgJq7P1qI0r-Hbk,13629
|
|
75
|
+
solokit/session/complete.py,sha256=3aImYYFaW4joyOx_6WDFBqqM7BnTw3Y9Fzr7ByFLC88,42757
|
|
76
|
+
solokit/session/status.py,sha256=q1NnkjdzRSOqK3n2XsBgecBAGXjhjXdYNM4X49y8BxA,8236
|
|
77
|
+
solokit/session/validate.py,sha256=6JjhYs5vH33wpxdQxRQXOG-GJHCuyj04KRUoOEhgXqU,17674
|
|
78
|
+
solokit/session/briefing/__init__.py,sha256=7xmIqu9XVQDDHFOh-6L6IQWksyeM-o7ntnvE1RsWrLE,8527
|
|
79
|
+
solokit/session/briefing/documentation_loader.py,sha256=v7e8eijI2LsZ5st0qyvUK_xcPUIJVUJpXA4nP5ev05c,1599
|
|
80
|
+
solokit/session/briefing/formatter.py,sha256=07--kOPQKwIONmq0L7MRpOPOiGn5chVggsrIwkPCXoE,17575
|
|
81
|
+
solokit/session/briefing/git_context.py,sha256=T4zagdkdtbbbaIVWztQdbAz2FLVMN6O-d6kaLbi4X8o,11032
|
|
82
|
+
solokit/session/briefing/learning_loader.py,sha256=uYE-igCOAgsL3mxCWWWScyrEQvyRxIFTSyG3IWKGi04,7375
|
|
83
|
+
solokit/session/briefing/milestone_builder.py,sha256=XpM4hI7hj-uU1A5Fx3Lv-L238wSp-mjWNeUSdO2Htqs,2263
|
|
84
|
+
solokit/session/briefing/orchestrator.py,sha256=bdZ-LD3-AOIzQqK8Z9Fk-xUblHAyvCRVw38sU5Op-b8,5331
|
|
85
|
+
solokit/session/briefing/stack_detector.py,sha256=HV6GiLHqR_Hqzl4qmzgW0wHQbkKsDJh8c2O3bz-X4Wk,1445
|
|
86
|
+
solokit/session/briefing/tree_generator.py,sha256=t35XRHPIUKC98_84jkRQlATHlRboTb9IZL4VWrPHRss,1439
|
|
87
|
+
solokit/session/briefing/work_item_loader.py,sha256=1U0lN9dMGl5XOFRcaiCWfi82TjC0AwU01KswkeH6axs,7693
|
|
88
|
+
solokit/templates/CHANGELOG.md,sha256=yG5VPddIsiCFAFN8jlQwMX8ezlzYEDo6oxrQ6bV3f7s,373
|
|
89
|
+
solokit/templates/WORK_ITEM_TYPES.md,sha256=CvJ7jMy1greq6kT0XDd5ylzuLzh0aj4_URgRt8P1EOg,4029
|
|
90
|
+
solokit/templates/__init__.py,sha256=FiFbFNaX1VYWyRnBJShDJXlcC51lAg8a_QoJfD-Lg94,68
|
|
91
|
+
solokit/templates/bug_spec.md,sha256=pC3N5Wyd19KsSm0m3fhoC3qd3mZOpLVrkod1_lUU3VE,7911
|
|
92
|
+
solokit/templates/config.schema.json,sha256=tlU_RlwtvOXP2SGVuQX5YMWnQkP_BZaveHqE1M6NNr8,4573
|
|
93
|
+
solokit/templates/deployment_spec.md,sha256=iOzikzvBwG_lbOQmThTTTFsbhLV4UFCP1K6bylVQNm8,15978
|
|
94
|
+
solokit/templates/feature_spec.md,sha256=ePLIDYG8KLBV4lDynFpX-NgTK7Mw8330lTAyqIUZFVw,7318
|
|
95
|
+
solokit/templates/integration_test_spec.md,sha256=OXeA_NSQl5HtsSoyULi-aB0fjcjtNAXuwOlWCh2-rMw,12101
|
|
96
|
+
solokit/templates/learnings.json,sha256=UwJdIO4okxlUTgEuS2lARNbZ4pL2xy5jG-Y5stpzh3s,263
|
|
97
|
+
solokit/templates/refactor_spec.md,sha256=JkbmU-lVUmBlUPGsDna29XSa4K6PCplVHO3fXz7jJzs,9341
|
|
98
|
+
solokit/templates/security_spec.md,sha256=gVQosbdZZ1jOh-Nw2KIx0xxrOF0GOcgPHgs1hehiN4c,9519
|
|
99
|
+
solokit/templates/stack-versions.yaml,sha256=Qc_nhuiQdi9Q-qyVmQEqeBC-ZTDV8mRz8vgnpGJXw9U,23484
|
|
100
|
+
solokit/templates/status_update.json,sha256=P6LBbwWfPiRfLuLg1zJIm4D1DTXB_v61a0IKYrenXzY,101
|
|
101
|
+
solokit/templates/template-registry.json,sha256=mM2_KLuirMyLwEVGaNSAg-uK0wECHRKPKWIdVUU9uYY,8827
|
|
102
|
+
solokit/templates/work_items.json,sha256=tHYdwfvkHsL0bsV4OwMMrrcFp6scD2hmL5bk6ZB1RJ4,171
|
|
103
|
+
solokit/templates/.claude/commands/end.md,sha256=ZStmu_1SNeMgcL7WqpngKoO7VUjpcxogg6wy-qD3Qro,3708
|
|
104
|
+
solokit/templates/.claude/commands/init.md,sha256=-as3od5u_4cIhpagLklyfJECFnUpiuJFnRbeBx8OrvU,4847
|
|
105
|
+
solokit/templates/.claude/commands/learn-curate.md,sha256=Jk83vPw07e1lnJB3429KtYOFiFkvgz6cAeg_bfq6n3A,2267
|
|
106
|
+
solokit/templates/.claude/commands/learn-search.md,sha256=fagaduSZ2JTv-QL3pl1Iy6lty7KpeA1ZqMQAzFMpGRk,1137
|
|
107
|
+
solokit/templates/.claude/commands/learn-show.md,sha256=mZe_MDlg4eEK0I1yUl_rYrTwUJhiMxAK_SVXPva360o,1435
|
|
108
|
+
solokit/templates/.claude/commands/learn.md,sha256=1OOqm0vTS9DlKv1NmGHoCG8Ah7NkDbppx3_KinRzFFM,5137
|
|
109
|
+
solokit/templates/.claude/commands/start.md,sha256=OyT1Zymkb0FEC-cqJ7MsoJ9LvdsIPSWSyNe-_EALm-s,4753
|
|
110
|
+
solokit/templates/.claude/commands/status.md,sha256=zuy84PtMRn4C2cEqNZq_ui-cKLaUVdh602PrjI6dzug,770
|
|
111
|
+
solokit/templates/.claude/commands/validate.md,sha256=U-w-FM5MTlkfpVQTiaSVUZHTa6sXjALONsLvmp0ZHSM,921
|
|
112
|
+
solokit/templates/.claude/commands/work-delete.md,sha256=Cj3DZuUHOYLyt1Wx4nlvuAcayReM7l8Zmaq9j4yEzw0,4219
|
|
113
|
+
solokit/templates/.claude/commands/work-graph.md,sha256=FSilxDH90mb8WCSGUk07FNgfTYlvor0x7NyliGHwH6c,3962
|
|
114
|
+
solokit/templates/.claude/commands/work-list.md,sha256=kTa7DTVd_qVnrmlpRI5Ot3W62uG3TyDQSnW2dlaCr6w,902
|
|
115
|
+
solokit/templates/.claude/commands/work-new.md,sha256=POGZ1ZsNvuZAcicMjVC4rZLn5n_KwbQKkjUTZu7WpjE,5189
|
|
116
|
+
solokit/templates/.claude/commands/work-next.md,sha256=66g-O0Z_6-dvo4rmdc61wxhUK9nt3kVgPmV01nzVI68,949
|
|
117
|
+
solokit/templates/.claude/commands/work-show.md,sha256=EkirUfJ4bTqUnfiLUXTtU-bjNl-jt_rNqL83rWn0Jro,855
|
|
118
|
+
solokit/templates/.claude/commands/work-update.md,sha256=_IDQtRpR-mLG4fpCU3oKZAezUmny1B_7JVl4aiFaWEA,5738
|
|
119
|
+
solokit/templates/dashboard_refine/base/.gitignore,sha256=835-G5A1Oha6e-yJeVhTEe5tADESCTkeWrRxYt9MqSI,391
|
|
120
|
+
solokit/templates/dashboard_refine/base/components.json,sha256=jWT4GtmFvMBh0kFZGJ0GF235X3Q-crehAb4LHaN00AA,324
|
|
121
|
+
solokit/templates/dashboard_refine/base/next.config.ts,sha256=mfYLp4-RrMzqMYxHj59x2uxKnlFgENIrxSJ4RMm2tUc,213
|
|
122
|
+
solokit/templates/dashboard_refine/base/package.json.template,sha256=AR3xGp1ag_Pvi18YkMlM2WhtyljcSOmPDTtUhNt-4Ow,1032
|
|
123
|
+
solokit/templates/dashboard_refine/base/postcss.config.mjs,sha256=q0gFt3k16NiiA25d49OhXW4hIp6OOhpK6hCwkydwlGA,146
|
|
124
|
+
solokit/templates/dashboard_refine/base/tailwind.config.ts,sha256=-dCDNmPtyVgMsjHklTcs-PTjhZzcOTpidtJ3oswnMvQ,1573
|
|
125
|
+
solokit/templates/dashboard_refine/base/tsconfig.json,sha256=7SvBlRBYmuXAlAteRQTGwEE7ooWuNaPUrZ219dOo61E,598
|
|
126
|
+
solokit/templates/dashboard_refine/base/app/globals.css,sha256=bcLkJvfpvnRhrNHaSdu0ecpgXHmhWgyrbkxtraFv51E,1611
|
|
127
|
+
solokit/templates/dashboard_refine/base/app/layout.tsx,sha256=N6_tJXRVm21Xtn3cyJoowYGv2mbKQhQbgTA8nVp5Uv0,553
|
|
128
|
+
solokit/templates/dashboard_refine/base/app/page.tsx,sha256=Aet4SxslD518OMKwhDuJn7cdZAnSfN3Rcx12rN-AwsA,212
|
|
129
|
+
solokit/templates/dashboard_refine/base/app/(dashboard)/layout.tsx,sha256=wbfylrI0b7eE_z2CCo76r9nKauucH0wBxrPSLmnWK-Q,515
|
|
130
|
+
solokit/templates/dashboard_refine/base/app/(dashboard)/page.tsx,sha256=qWCjliZ2ZeyZCuJHvZnH4-KbCQiL185LbbbAKPbQNmA,1762
|
|
131
|
+
solokit/templates/dashboard_refine/base/app/(dashboard)/users/page.tsx,sha256=ImrZkl8A_LwconwjMPFtti-wj07JYXkX8HsPV99ZsiU,2203
|
|
132
|
+
solokit/templates/dashboard_refine/base/components/client-refine-wrapper.tsx,sha256=j4vOTgkeSIxJAEiJvl2ERs7b-1iC-YemmOXoomInrtA,539
|
|
133
|
+
solokit/templates/dashboard_refine/base/components/layout/header.tsx,sha256=-olXLYVTK9f-Hb5JPxfCV_QPQT7kgGPa5_CtSI2SM6s,1586
|
|
134
|
+
solokit/templates/dashboard_refine/base/components/layout/sidebar.tsx,sha256=f1lLNutKk-n9PXFUosMmeSYJS-6jz1v-1TvBN5mArKQ,2107
|
|
135
|
+
solokit/templates/dashboard_refine/base/components/ui/button.tsx,sha256=9xOlph8OsYt5lX6lTO24K2uOzl4jFa8z_JBFGdIpL9Y,1807
|
|
136
|
+
solokit/templates/dashboard_refine/base/components/ui/card.tsx,sha256=699sj4uyHDq_vEESCT4hjIqJzJ2QhD-j5vQmmtC95Gk,1891
|
|
137
|
+
solokit/templates/dashboard_refine/base/components/ui/table.tsx,sha256=RmxlZV23Qmjw_74DdvNqm6qq8_N1xErVKgVmTsvbRlI,2783
|
|
138
|
+
solokit/templates/dashboard_refine/base/lib/refine.tsx,sha256=9acbxeOy25VODSb90p_mYlZvWZGmm2tBMXw_mgxAwJI,1537
|
|
139
|
+
solokit/templates/dashboard_refine/base/lib/utils.ts,sha256=u_Hg0BMpvoeMwoYChp-QIxtcWmJIx3gdK-DbqTC5_54,363
|
|
140
|
+
solokit/templates/dashboard_refine/base/providers/refine-provider.tsx,sha256=VXgzoL9SwvaYr-iIoP-So48EcAoEFP3ZKv7k9jjhkrM,565
|
|
141
|
+
solokit/templates/dashboard_refine/docker/Dockerfile,sha256=DDiNsXRivteBQidw5B6AKXiclUdndUf3d-JoVeIgt-E,1609
|
|
142
|
+
solokit/templates/dashboard_refine/docker/docker-compose.prod.yml,sha256=jTLRem36HePALZNevE3mQ0e-MIsJS3AqzseueBiCAH8,703
|
|
143
|
+
solokit/templates/dashboard_refine/docker/docker-compose.yml,sha256=t2VaJG1i1AyRZE2mYcGY2T35ZoSXAHGycnjwh1mR3bQ,488
|
|
144
|
+
solokit/templates/dashboard_refine/tier-1-essential/.eslintrc.json,sha256=eZdSRQRymnqpERF5FgErA4yWZtuRYXL899iC-PfzPo0,211
|
|
145
|
+
solokit/templates/dashboard_refine/tier-1-essential/jest.config.ts,sha256=fLDDFmKsWuiUb0PfMgbNUgNEaN_jO5udBcFLPGNmMYI,558
|
|
146
|
+
solokit/templates/dashboard_refine/tier-1-essential/jest.setup.ts,sha256=J7ng9p0VbGgP9jVg5YoSwBpKvsG9tHVlNMk-E8HyeOo,35
|
|
147
|
+
solokit/templates/dashboard_refine/tier-1-essential/package.json.tier1.template,sha256=geojuqxZOJpS-mKWhLYaEN8uOqBTUMiPz_Cs8k6_xt4,1681
|
|
148
|
+
solokit/templates/dashboard_refine/tier-1-essential/tests/setup.ts,sha256=cIKMCwIVCJ2zf0BC8D-Og5q7UsXqM5xTpSwWi0yznO0,543
|
|
149
|
+
solokit/templates/dashboard_refine/tier-1-essential/tests/unit/example.test.tsx,sha256=hK57uZrdIPOB-IYm8orcshxy549JfH2mMKaOELIw3x4,2145
|
|
150
|
+
solokit/templates/dashboard_refine/tier-2-standard/package.json.tier2.template,sha256=aSZZ4ObZeD7WwW4wfDBjwJoDc-yDmgWnlUqXEH-9q3E,1818
|
|
151
|
+
solokit/templates/dashboard_refine/tier-3-comprehensive/eslint.config.mjs,sha256=OVAVtBLQtnmLuEhhzj2p_DHcOqn7dm-scjk0PQxFaXs,559
|
|
152
|
+
solokit/templates/dashboard_refine/tier-3-comprehensive/package.json.tier3.template,sha256=oYoWl2p9do_U6xS8_hyw1Pj62hw5sP3V2UQAygKAIE0,2477
|
|
153
|
+
solokit/templates/dashboard_refine/tier-3-comprehensive/playwright.config.ts,sha256=0ATSlD0q8s96uJzoPuZqygD4LDfqxvcxEdcOBMHbsII,1770
|
|
154
|
+
solokit/templates/dashboard_refine/tier-3-comprehensive/stryker.conf.json,sha256=eEE09N912wy4a_1B38Che-RVnef5SVBbAHvgrREGy-Y,791
|
|
155
|
+
solokit/templates/dashboard_refine/tier-3-comprehensive/type-coverage.json,sha256=LmAilp__-YlN1pVNm68vKgurpNB1vfOLDrfWNgXBMLE,254
|
|
156
|
+
solokit/templates/dashboard_refine/tier-3-comprehensive/tests/e2e/dashboard.spec.ts,sha256=XCny0-3xGAolWNBpEaDoNYvRta2LHKGrYgtTzZxnKjw,2953
|
|
157
|
+
solokit/templates/dashboard_refine/tier-3-comprehensive/tests/e2e/user-management.spec.ts,sha256=F3rHecvxcbPNrhWlD7G0YuAqUwQ52nlKw0Vyn5SWRmo,3334
|
|
158
|
+
solokit/templates/dashboard_refine/tier-3-comprehensive/tests/integration/dashboard.test.tsx,sha256=aEpTtPltiPYYQW7aLWh0F77S5jNdMD1K9rf21DVxCG8,2260
|
|
159
|
+
solokit/templates/dashboard_refine/tier-4-production/instrumentation.ts,sha256=CAQhkBFW302pNpRTakVPxY5QFvKKCEu6p3Mje82qfzI,224
|
|
160
|
+
solokit/templates/dashboard_refine/tier-4-production/next.config.ts,sha256=huKbBH5OQJyICdEURbHuT1rUmPmEntjAJMIRtBgdSpY,1666
|
|
161
|
+
solokit/templates/dashboard_refine/tier-4-production/package.json.tier4.template,sha256=YkChQNBjiErOlARlXs6jdSgHxYITYdjCXCYDWSjafjo,2836
|
|
162
|
+
solokit/templates/dashboard_refine/tier-4-production/sentry.client.config.ts,sha256=UaetcML35dbDIYjuh1FVgBbwSrUJ7mrD8lzL9pZXzFM,820
|
|
163
|
+
solokit/templates/dashboard_refine/tier-4-production/sentry.edge.config.ts,sha256=MEwyeR3iJfuG6bBTSukBUngXIOcAPvxBn0rsNN81rP4,322
|
|
164
|
+
solokit/templates/dashboard_refine/tier-4-production/sentry.server.config.ts,sha256=MEwyeR3iJfuG6bBTSukBUngXIOcAPvxBn0rsNN81rP4,322
|
|
165
|
+
solokit/templates/dashboard_refine/tier-4-production/k6/dashboard-load-test.js,sha256=qer2kzf1U1KMo4XGm3SKDw4ENGka6mrg4i-gy-WxbXQ,2017
|
|
166
|
+
solokit/templates/fullstack_nextjs/base/.gitignore,sha256=835-G5A1Oha6e-yJeVhTEe5tADESCTkeWrRxYt9MqSI,391
|
|
167
|
+
solokit/templates/fullstack_nextjs/base/next.config.ts,sha256=YUvOJbCJw_GbHhemNGx0uFgDQEAVTGYh59NTAwBHZ8w,133
|
|
168
|
+
solokit/templates/fullstack_nextjs/base/package.json.template,sha256=BHKPhFzFtq6nab1XHqqV_gXvLhwyLGxiJPdG_XeHSIA,730
|
|
169
|
+
solokit/templates/fullstack_nextjs/base/postcss.config.mjs,sha256=OqwNBH191QXuo2LJGOLd0ENkKGgsXeXLGP7acNRqpcs,146
|
|
170
|
+
solokit/templates/fullstack_nextjs/base/tailwind.config.ts,sha256=CAj-_NYebDwErN9gZkNxafseEMfxatVeSYa-URfs0xQ,356
|
|
171
|
+
solokit/templates/fullstack_nextjs/base/tsconfig.json,sha256=7SvBlRBYmuXAlAteRQTGwEE7ooWuNaPUrZ219dOo61E,598
|
|
172
|
+
solokit/templates/fullstack_nextjs/base/app/globals.css,sha256=gpoakzyttK3hfFLzlAx84wQgyQA34pnoQtG5Mn1zwnc,413
|
|
173
|
+
solokit/templates/fullstack_nextjs/base/app/layout.tsx,sha256=27DE1jnZb6zzwfbdp2dUqaxm1mRlPsqV6fMVG3gwmEw,444
|
|
174
|
+
solokit/templates/fullstack_nextjs/base/app/page.tsx,sha256=c0Q_tZicOpBlvNLx1QIcFgnvLScY_ZJZ9bOKnL6q0DA,1344
|
|
175
|
+
solokit/templates/fullstack_nextjs/base/app/api/example/route.ts,sha256=5x0rwWmbOq5Vk3ZmpqN9u6sVhIrtARb6EZ4xr-y9DI0,1521
|
|
176
|
+
solokit/templates/fullstack_nextjs/base/components/example-component.tsx,sha256=ENMEnFFn23Nb2TJn0e0hcjpvkfAgPh4itaOR68zozRI,563
|
|
177
|
+
solokit/templates/fullstack_nextjs/base/lib/prisma.ts,sha256=tjxuAiz-LLDgi17MXUJKPq-umdDtlP2f3GqUFQ2Fyms,484
|
|
178
|
+
solokit/templates/fullstack_nextjs/base/lib/utils.ts,sha256=u_Hg0BMpvoeMwoYChp-QIxtcWmJIx3gdK-DbqTC5_54,363
|
|
179
|
+
solokit/templates/fullstack_nextjs/base/lib/validations.ts,sha256=l8LG1W-Y86lEdk851xTRP0VWD5GgWEqyVBOzKuG3Apc,547
|
|
180
|
+
solokit/templates/fullstack_nextjs/base/prisma/schema.prisma,sha256=UQxKuO_loVpyIl1mXFpXVAlSd7fQOvNoiahglCsTKIs,440
|
|
181
|
+
solokit/templates/fullstack_nextjs/docker/Dockerfile,sha256=ZssooHT0KDJnFvQ-XgVQlYGMBg1l7pnrbqamwGevdcc,1659
|
|
182
|
+
solokit/templates/fullstack_nextjs/docker/docker-compose.prod.yml,sha256=zW2Wo0dP43LegdQji0_DoXfSYaDT93n67MzV8-K5HW4,1371
|
|
183
|
+
solokit/templates/fullstack_nextjs/docker/docker-compose.yml,sha256=0gJU_e0xM_oO1O0wdzl1jgyCPIo8bflZqA7Zk1qzkew,1053
|
|
184
|
+
solokit/templates/fullstack_nextjs/tier-1-essential/.eslintrc.json,sha256=eZdSRQRymnqpERF5FgErA4yWZtuRYXL899iC-PfzPo0,211
|
|
185
|
+
solokit/templates/fullstack_nextjs/tier-1-essential/jest.config.ts,sha256=fLDDFmKsWuiUb0PfMgbNUgNEaN_jO5udBcFLPGNmMYI,558
|
|
186
|
+
solokit/templates/fullstack_nextjs/tier-1-essential/jest.setup.ts,sha256=J7ng9p0VbGgP9jVg5YoSwBpKvsG9tHVlNMk-E8HyeOo,35
|
|
187
|
+
solokit/templates/fullstack_nextjs/tier-1-essential/package.json.tier1.template,sha256=yh7gLk9omh4X3py1snaaWkwRokskCXTAWiKMW_CmiWM,1340
|
|
188
|
+
solokit/templates/fullstack_nextjs/tier-1-essential/tests/setup.ts,sha256=qCU-SsOZABkaQ_iAXCWNcepBt9sE0NUufb4NTOcx7T0,451
|
|
189
|
+
solokit/templates/fullstack_nextjs/tier-1-essential/tests/api/example.test.ts,sha256=q6gW8fg_n2xQavxc7JobWX0Na-VFqnPQJJGZo_pbSHg,2564
|
|
190
|
+
solokit/templates/fullstack_nextjs/tier-1-essential/tests/unit/example.test.tsx,sha256=9qTCqw5DvaUZZtgGmpyT9NpcPwoLUxfK-bO31c3jzZU,795
|
|
191
|
+
solokit/templates/fullstack_nextjs/tier-2-standard/package.json.tier2.template,sha256=fX2NeHg8eS7m0FojgRnQXiT4l4_6ao5sUa_RES8eLCk,1472
|
|
192
|
+
solokit/templates/fullstack_nextjs/tier-3-comprehensive/eslint.config.mjs,sha256=pk7Ft-70FANURgYoDT0QpGTIBi7sM276Zf2HuNrMj5E,1215
|
|
193
|
+
solokit/templates/fullstack_nextjs/tier-3-comprehensive/package.json.tier3.template,sha256=ieCP-9yFfBK51iryDpsg4GCvA4QWnUaA9FyQZdA-QdU,2068
|
|
194
|
+
solokit/templates/fullstack_nextjs/tier-3-comprehensive/playwright.config.ts,sha256=0ATSlD0q8s96uJzoPuZqygD4LDfqxvcxEdcOBMHbsII,1770
|
|
195
|
+
solokit/templates/fullstack_nextjs/tier-3-comprehensive/stryker.conf.json,sha256=5dck-Pt_RPzB1ioHI4Vj-GfcJGstdQ20CMfQ_uK9IXw,667
|
|
196
|
+
solokit/templates/fullstack_nextjs/tier-3-comprehensive/type-coverage.json,sha256=9tmMzn6aU1-F-nBQA3LNNMYVWkwSHZ_GXfEENvpYbUs,187
|
|
197
|
+
solokit/templates/fullstack_nextjs/tier-3-comprehensive/tests/e2e/flow.spec.ts,sha256=eYrGMcIG4Qqx-J2F6a9o_a8rBIu-XA44XtFnN8yUgmg,1735
|
|
198
|
+
solokit/templates/fullstack_nextjs/tier-3-comprehensive/tests/integration/api.test.ts,sha256=TEipLy34wRlvXovFtlJluGWlt9W_wHSvAo5dByiNX1M,4623
|
|
199
|
+
solokit/templates/fullstack_nextjs/tier-4-production/instrumentation.ts,sha256=CAQhkBFW302pNpRTakVPxY5QFvKKCEu6p3Mje82qfzI,224
|
|
200
|
+
solokit/templates/fullstack_nextjs/tier-4-production/next.config.ts,sha256=rtJQ75ElOBKZp6wHO3VUEa4PBse36sVDKXVJ_f64_x4,1669
|
|
201
|
+
solokit/templates/fullstack_nextjs/tier-4-production/package.json.tier4.template,sha256=af3oiGaerkYqqASU69pbTDX958wrD8npGHhw4zS05a4,2398
|
|
202
|
+
solokit/templates/fullstack_nextjs/tier-4-production/sentry.client.config.ts,sha256=UaetcML35dbDIYjuh1FVgBbwSrUJ7mrD8lzL9pZXzFM,820
|
|
203
|
+
solokit/templates/fullstack_nextjs/tier-4-production/sentry.edge.config.ts,sha256=MEwyeR3iJfuG6bBTSukBUngXIOcAPvxBn0rsNN81rP4,322
|
|
204
|
+
solokit/templates/fullstack_nextjs/tier-4-production/sentry.server.config.ts,sha256=MEwyeR3iJfuG6bBTSukBUngXIOcAPvxBn0rsNN81rP4,322
|
|
205
|
+
solokit/templates/fullstack_nextjs/tier-4-production/k6/load-test.js,sha256=-Ec3v3j2Z7OXAwUT-inmxvdp6SRumeXNIH8y5c86_aA,1242
|
|
206
|
+
solokit/templates/git-hooks/prepare-commit-msg,sha256=sUaTndGvSxl7XwjF3o5kPHwNhcA8mYegYXbsQzW_650,941
|
|
207
|
+
solokit/templates/ml_ai_fastapi/base/.gitignore,sha256=dBDrqwtvwMu2KG--72KV7urH5AON-8Qzkh-9x3BjTFQ,972
|
|
208
|
+
solokit/templates/ml_ai_fastapi/base/alembic.ini,sha256=D-yp2w7CnEyl337Vp5QxCcKs90BQ5J0gK2v9BKx_SSk,3453
|
|
209
|
+
solokit/templates/ml_ai_fastapi/base/pyproject.toml.template,sha256=6LmeenSVK2lGvuvwwATBJIvu3NoOXJXgY9dgxP0_tXU,1639
|
|
210
|
+
solokit/templates/ml_ai_fastapi/base/requirements.txt.template,sha256=q8Uxj_u4EaHo4oU_sohRj0Tgrx6SCnzWIPvxLNdj_0k,482
|
|
211
|
+
solokit/templates/ml_ai_fastapi/base/alembic/env.py,sha256=ylSD-6JM9afQ7ZGNhQlHlB7G_gAKQ5HN41aNfTj1Gpo,2692
|
|
212
|
+
solokit/templates/ml_ai_fastapi/base/src/__init__.py,sha256=nsGdYRwyRHi__sg4bOI9cAIF1YNMMDtxd9PwGi0K3fE,74
|
|
213
|
+
solokit/templates/ml_ai_fastapi/base/src/main.py,sha256=oZkVxNsEZwO6lNZ3CBR5DNigLLVn24z4VetO233cnT8,1551
|
|
214
|
+
solokit/templates/ml_ai_fastapi/base/src/api/__init__.py,sha256=AVft3KIZcZfAN9MnY8Y0Oe3z68pwwyjnoJhfMBdbhR8,60
|
|
215
|
+
solokit/templates/ml_ai_fastapi/base/src/api/dependencies.py,sha256=fGx9okPkkX-nq3WbSpsLq916GxvCdC4xgT4DSjP2qR4,489
|
|
216
|
+
solokit/templates/ml_ai_fastapi/base/src/api/routes/__init__.py,sha256=HiPdQplzCCD8UFwUQwQjxE68JibW8dbyjDsHJ0YvXk0,27
|
|
217
|
+
solokit/templates/ml_ai_fastapi/base/src/api/routes/example.py,sha256=NA28agh3EOXWJbaeeiokjOSjBfH24DILn-xATymi7bE,3103
|
|
218
|
+
solokit/templates/ml_ai_fastapi/base/src/api/routes/health.py,sha256=SWw8Cp2iDQqJnFdIraauOJwM7n5MH82yBqAJV4eNL2M,1416
|
|
219
|
+
solokit/templates/ml_ai_fastapi/base/src/core/__init__.py,sha256=FDNtKByggbdZXPji2VHsTJI2ZxyXqcrFa90LwWoeVF8,71
|
|
220
|
+
solokit/templates/ml_ai_fastapi/base/src/core/config.py,sha256=sB-0W2tV01sgTj0iyxI5kHeJuKU-CuOgPuWiapQs5TU,1816
|
|
221
|
+
solokit/templates/ml_ai_fastapi/base/src/core/database.py,sha256=6ywhyXBEY1ie9eMb5UjACOCuARl0k7mYRznVlRWk5vM,1239
|
|
222
|
+
solokit/templates/ml_ai_fastapi/base/src/models/__init__.py,sha256=SN62fzlQyRXQWBBltUov_Ynnc8rVs2DsAL6DfyGSWZI,163
|
|
223
|
+
solokit/templates/ml_ai_fastapi/base/src/models/example.py,sha256=ItxNXOYNKAtykp4ZBByH0xcPJY-nbDjt_qIEsKMLAd0,1571
|
|
224
|
+
solokit/templates/ml_ai_fastapi/base/src/services/__init__.py,sha256=DgEHcK-HB0M99dAnt92GLmM61od2lO69qA_m_OiVqDs,40
|
|
225
|
+
solokit/templates/ml_ai_fastapi/base/src/services/example.py,sha256=kpBfjXl-A9VT6vFzOKxBsMjRlTWlMe38ac6q-oiSXko,2871
|
|
226
|
+
solokit/templates/ml_ai_fastapi/docker/Dockerfile,sha256=dYtIhatGBn8EXxckW_tFaFrmYTkWuWiPHbhcW6S3WDI,1441
|
|
227
|
+
solokit/templates/ml_ai_fastapi/docker/docker-compose.prod.yml,sha256=gO12dHD7KsmTqTcld87RUcIChhea-orS4qCmvqV06Vs,2527
|
|
228
|
+
solokit/templates/ml_ai_fastapi/docker/docker-compose.yml,sha256=oAEBhG2zPWJsxxSzmRyUD4XWI6TGTI_D0aDpwBRv8DQ,1580
|
|
229
|
+
solokit/templates/ml_ai_fastapi/tier-1-essential/pyproject.toml.tier1.template,sha256=ZM_os-_2TwzYlFEkmiKBlPFaGEqm2F9nveJD4u8LNWI,2166
|
|
230
|
+
solokit/templates/ml_ai_fastapi/tier-1-essential/pyrightconfig.json,sha256=y584ndz5CbxdPwyb85eWyzPNiKKN-fLcILAa5WcJBik,1098
|
|
231
|
+
solokit/templates/ml_ai_fastapi/tier-1-essential/pytest.ini,sha256=37Jn5wONyLIEx-dyH9UA8rQ4iRGpx935b85IJAx79bU,1338
|
|
232
|
+
solokit/templates/ml_ai_fastapi/tier-1-essential/requirements-dev.txt,sha256=esUd3OpKS6yNV6Aj8f6UD654lRNtnp2fucoEHPTeXAY,270
|
|
233
|
+
solokit/templates/ml_ai_fastapi/tier-1-essential/ruff.toml,sha256=yp2hRkb-D3yBse0ZavbCHI-DgKM_ZGLxO6r2e-t3yEU,1876
|
|
234
|
+
solokit/templates/ml_ai_fastapi/tier-1-essential/tests/__init__.py,sha256=EhkWFuGoRXiYKHmpDst4JaR0pWTvrndaFiH_sy9qiHk,38
|
|
235
|
+
solokit/templates/ml_ai_fastapi/tier-1-essential/tests/conftest.py,sha256=hnK9Hyvz9mBAaVUywrjAc8fkCyI-URQks_bSA3zC3_U,2105
|
|
236
|
+
solokit/templates/ml_ai_fastapi/tier-1-essential/tests/test_main.py,sha256=r8F777Wq9Xgx849pdU88l7gxWHgJE2B81rxab5POkwg,1536
|
|
237
|
+
solokit/templates/ml_ai_fastapi/tier-1-essential/tests/unit/__init__.py,sha256=fLpsQGWI4KYK5713ybdvx5k069r-OSrZnyLHxD6xjEQ,27
|
|
238
|
+
solokit/templates/ml_ai_fastapi/tier-1-essential/tests/unit/test_example.py,sha256=nqKhLZ6vhzL1MblIdO37TWMOA_FfacnFC_qQMb8mx-c,4065
|
|
239
|
+
solokit/templates/ml_ai_fastapi/tier-2-standard/pyproject.toml.tier2.template,sha256=sZgwb5Hlwj52I-rm3FjtfEJ4pyxLCyEwyFGkOrxB85g,2547
|
|
240
|
+
solokit/templates/ml_ai_fastapi/tier-3-comprehensive/locustfile.py,sha256=Ps0inutSzWmFdZaoFLZHhFsqRUzuSlkgTLahG1KiTN8,2738
|
|
241
|
+
solokit/templates/ml_ai_fastapi/tier-3-comprehensive/mutmut_config.py,sha256=otqoy3LK2bJYo13oTxIatImVdfTOJpicb_1j3dMAEnA,1038
|
|
242
|
+
solokit/templates/ml_ai_fastapi/tier-3-comprehensive/pyproject.toml.tier3.template,sha256=JqBZMepWPhYUom4T-KO2zVtdvV_cdBeFmwlwwOhiZiw,2935
|
|
243
|
+
solokit/templates/ml_ai_fastapi/tier-3-comprehensive/tests/integration/__init__.py,sha256=_AkXSfhcBhvKvY84UxiSG7X7E35L7YByJzRcfOka5w8,34
|
|
244
|
+
solokit/templates/ml_ai_fastapi/tier-3-comprehensive/tests/integration/conftest.py,sha256=lFfVzhpeXdU217l4jJGLkV1j5KuRYPPpi4dRuU1PqSI,2319
|
|
245
|
+
solokit/templates/ml_ai_fastapi/tier-3-comprehensive/tests/integration/test_api.py,sha256=bxsa2plLI6CrbI9ZBpWBBv8PJ7V7cBMLplmPsi1RJ5Q,4891
|
|
246
|
+
solokit/templates/ml_ai_fastapi/tier-4-production/pyproject.toml.tier4.template,sha256=CyLIId5FKu0g_XQP4A9PUSa4RS-C0IOfyJWzHm1N3lM,3281
|
|
247
|
+
solokit/templates/ml_ai_fastapi/tier-4-production/requirements-prod.txt,sha256=7qsjxFuI1qrWPMz1ESJ_KBcK8E-IucEIGNNkQhxBWH8,511
|
|
248
|
+
solokit/templates/ml_ai_fastapi/tier-4-production/src/api/routes/metrics.py,sha256=iXbsd3pUS_r7shm-A1SXYLXukMvMV9TMd48dXZsW62E,410
|
|
249
|
+
solokit/templates/ml_ai_fastapi/tier-4-production/src/core/logging.py,sha256=8kPpHnqDbpy-eyPK0Vp7A2GbgK6NdLQux9bK6U9P6Bo,2052
|
|
250
|
+
solokit/templates/ml_ai_fastapi/tier-4-production/src/core/monitoring.py,sha256=EHGOcQIrIG3eQKGMiq1IF9f5dTpikGtmx3j4H4gdnm4,1464
|
|
251
|
+
solokit/templates/ml_ai_fastapi/tier-4-production/src/core/sentry.py,sha256=O2Uo9J42g_xV3IkfVNFs5kNx_tCcVnUgrEeVaUtIFxY,2150
|
|
252
|
+
solokit/templates/ml_ai_fastapi/tier-4-production/src/middleware/__init__.py,sha256=50bq68z81PdaxplIoowuhANnjED9HTC6dY6wx_fvWE4,59
|
|
253
|
+
solokit/templates/ml_ai_fastapi/tier-4-production/src/middleware/logging.py,sha256=k1ACJbg1u2LfC8UzgL0NO-h2nrxEzAGQ0sHC_8zO2t8,2109
|
|
254
|
+
solokit/templates/ml_ai_fastapi/tier-4-production/src/middleware/tracing.py,sha256=ajG2MPG3ZXCKlSGJ30mHCGLcyGTkwKqtZzyxd4kA9bU,1835
|
|
255
|
+
solokit/templates/saas_t3/base/.gitignore,sha256=835-G5A1Oha6e-yJeVhTEe5tADESCTkeWrRxYt9MqSI,391
|
|
256
|
+
solokit/templates/saas_t3/base/next.config.ts,sha256=YUvOJbCJw_GbHhemNGx0uFgDQEAVTGYh59NTAwBHZ8w,133
|
|
257
|
+
solokit/templates/saas_t3/base/package.json.template,sha256=jtS83Lcz3Xks-ben7L1hh1U_1zu7mhsXHjNT4ktcGd0,918
|
|
258
|
+
solokit/templates/saas_t3/base/postcss.config.mjs,sha256=OqwNBH191QXuo2LJGOLd0ENkKGgsXeXLGP7acNRqpcs,146
|
|
259
|
+
solokit/templates/saas_t3/base/tailwind.config.ts,sha256=CAj-_NYebDwErN9gZkNxafseEMfxatVeSYa-URfs0xQ,356
|
|
260
|
+
solokit/templates/saas_t3/base/tsconfig.json,sha256=7SvBlRBYmuXAlAteRQTGwEE7ooWuNaPUrZ219dOo61E,598
|
|
261
|
+
solokit/templates/saas_t3/base/app/globals.css,sha256=gpoakzyttK3hfFLzlAx84wQgyQA34pnoQtG5Mn1zwnc,413
|
|
262
|
+
solokit/templates/saas_t3/base/app/layout.tsx,sha256=V06Ee4dvKZKl4HdoTpoPC_G44QE5OHyTPTvrB2tay4s,504
|
|
263
|
+
solokit/templates/saas_t3/base/app/page.tsx,sha256=C3Kf4xKw2zj0TVNrikyrAz8S00puJRPU1zrq3z0Marg,1305
|
|
264
|
+
solokit/templates/saas_t3/base/app/api/trpc/[trpc]/route.ts,sha256=Vz8EMMO0ntMbK94qHhzEdHE8K_nDHQ0xZAHoZwiKhrg,985
|
|
265
|
+
solokit/templates/saas_t3/base/lib/api.tsx,sha256=KVqqcKnPYfwCzWe3CiYMHq_dEFRSscWmMq1Ia2-uI6k,2292
|
|
266
|
+
solokit/templates/saas_t3/base/lib/utils.ts,sha256=u_Hg0BMpvoeMwoYChp-QIxtcWmJIx3gdK-DbqTC5_54,363
|
|
267
|
+
solokit/templates/saas_t3/base/prisma/schema.prisma,sha256=YwSqX4_WZktrAtErc8X78FrxGuvmiYFI2bNTnjQ1okM,410
|
|
268
|
+
solokit/templates/saas_t3/base/server/db.ts,sha256=QAcPkDstSZAKowiIk965WVrSzm7YmCBDPf7sVyaoV_o,476
|
|
269
|
+
solokit/templates/saas_t3/base/server/api/root.ts,sha256=md0M8NuQ9_oYoES6SBqHoBCkXtnXlz-x-as_siJZ-Lc,532
|
|
270
|
+
solokit/templates/saas_t3/base/server/api/trpc.ts,sha256=_LdxhkvkNcSBHKGdECIICcgpYad0RYGLHW_fzyyvc-g,1272
|
|
271
|
+
solokit/templates/saas_t3/base/server/api/routers/example.ts,sha256=iIeisYnZ1RO6ZgvWO68Qb6DyFuObAGWW0j5cTgOPaI0,772
|
|
272
|
+
solokit/templates/saas_t3/docker/Dockerfile,sha256=ZssooHT0KDJnFvQ-XgVQlYGMBg1l7pnrbqamwGevdcc,1659
|
|
273
|
+
solokit/templates/saas_t3/docker/docker-compose.prod.yml,sha256=CAFZfxv9Heu3x86EkR3xa5p87YAiOZXB5BP5BYRhAU0,1433
|
|
274
|
+
solokit/templates/saas_t3/docker/docker-compose.yml,sha256=lOK4JedJ-LMy1RzJk5uv2vu0WjpIHXZ77Vi9EjtYtPU,1119
|
|
275
|
+
solokit/templates/saas_t3/tier-1-essential/.eslintrc.json,sha256=eZdSRQRymnqpERF5FgErA4yWZtuRYXL899iC-PfzPo0,211
|
|
276
|
+
solokit/templates/saas_t3/tier-1-essential/jest.config.ts,sha256=fLDDFmKsWuiUb0PfMgbNUgNEaN_jO5udBcFLPGNmMYI,558
|
|
277
|
+
solokit/templates/saas_t3/tier-1-essential/jest.setup.ts,sha256=J7ng9p0VbGgP9jVg5YoSwBpKvsG9tHVlNMk-E8HyeOo,35
|
|
278
|
+
solokit/templates/saas_t3/tier-1-essential/package.json.tier1.template,sha256=KpSxjfNqHqFiVZrpYqNCI0O28jBoFAm6LIFtKgI_5xE,1528
|
|
279
|
+
solokit/templates/saas_t3/tier-1-essential/tests/setup.ts,sha256=qCU-SsOZABkaQ_iAXCWNcepBt9sE0NUufb4NTOcx7T0,451
|
|
280
|
+
solokit/templates/saas_t3/tier-1-essential/tests/unit/example.test.tsx,sha256=UKxp87c2Wjev9wmniqI6dSTCez8hkgzzRC-3aWf2Tug,874
|
|
281
|
+
solokit/templates/saas_t3/tier-2-standard/package.json.tier2.template,sha256=ySeeFs-WVxksgcmwAAake5ZfhBUUBxMuC6CeUuzGuao,1660
|
|
282
|
+
solokit/templates/saas_t3/tier-3-comprehensive/eslint.config.mjs,sha256=pk7Ft-70FANURgYoDT0QpGTIBi7sM276Zf2HuNrMj5E,1215
|
|
283
|
+
solokit/templates/saas_t3/tier-3-comprehensive/package.json.tier3.template,sha256=LX2PqzerfQlLhseUPFxAtfDDXYIjifN9PC-IuNClVnA,2256
|
|
284
|
+
solokit/templates/saas_t3/tier-3-comprehensive/playwright.config.ts,sha256=0ATSlD0q8s96uJzoPuZqygD4LDfqxvcxEdcOBMHbsII,1770
|
|
285
|
+
solokit/templates/saas_t3/tier-3-comprehensive/stryker.conf.json,sha256=10hzQzYS6dqIGFbrsDGnHgNbrkp4DOA1aSRBfph8ngE,689
|
|
286
|
+
solokit/templates/saas_t3/tier-3-comprehensive/type-coverage.json,sha256=9tmMzn6aU1-F-nBQA3LNNMYVWkwSHZ_GXfEENvpYbUs,187
|
|
287
|
+
solokit/templates/saas_t3/tier-3-comprehensive/tests/e2e/home.spec.ts,sha256=ELr3OKNpVrJcD_Fv98aukQU9j6pkt0BqU1pFczdgN1I,1168
|
|
288
|
+
solokit/templates/saas_t3/tier-3-comprehensive/tests/integration/api.test.ts,sha256=nLRg3MNdZTKHXY79K3RXgv_Y5XREbwVz8OZmtSULi34,1402
|
|
289
|
+
solokit/templates/saas_t3/tier-4-production/instrumentation.ts,sha256=CAQhkBFW302pNpRTakVPxY5QFvKKCEu6p3Mje82qfzI,224
|
|
290
|
+
solokit/templates/saas_t3/tier-4-production/next.config.ts,sha256=rtJQ75ElOBKZp6wHO3VUEa4PBse36sVDKXVJ_f64_x4,1669
|
|
291
|
+
solokit/templates/saas_t3/tier-4-production/package.json.tier4.template,sha256=IVPgy93q2IzAznIpyj1OkHC9IKqzvvNDRifvzwuI8ms,2586
|
|
292
|
+
solokit/templates/saas_t3/tier-4-production/sentry.client.config.ts,sha256=UaetcML35dbDIYjuh1FVgBbwSrUJ7mrD8lzL9pZXzFM,820
|
|
293
|
+
solokit/templates/saas_t3/tier-4-production/sentry.edge.config.ts,sha256=MEwyeR3iJfuG6bBTSukBUngXIOcAPvxBn0rsNN81rP4,322
|
|
294
|
+
solokit/templates/saas_t3/tier-4-production/sentry.server.config.ts,sha256=MEwyeR3iJfuG6bBTSukBUngXIOcAPvxBn0rsNN81rP4,322
|
|
295
|
+
solokit/templates/saas_t3/tier-4-production/vercel.json,sha256=5IdizBPYWw56sCE3PD_0oEH_GKR3PovyY1ndWmx8-1w,845
|
|
296
|
+
solokit/templates/saas_t3/tier-4-production/k6/load-test.js,sha256=tkgK-9rOOqqajS4Ao8yWy5Aplv9tRwydHN4TY8F9FlA,1373
|
|
297
|
+
solokit/testing/__init__.py,sha256=CVX1GFBnVImnOxA0K1ojszuNxq8UiYifHqqZ1HSRzy4,86
|
|
298
|
+
solokit/testing/integration_runner.py,sha256=RTViaG7-1eo6MEwu9zYPwzUOwlQsSUYpWNPEG8kM1LI,18172
|
|
299
|
+
solokit/testing/performance.py,sha256=2_eTWd3UWF73LzLFWN1o3DxtN7xhwY2zlhAoEDNnMrI,22272
|
|
300
|
+
solokit/visualization/__init__.py,sha256=K0lgJqiY5OjpHTx7WTB2GWbSybJEHTQZIQdPbYvt53E,55
|
|
301
|
+
solokit/visualization/dependency_graph.py,sha256=BWVP3Bx5hwzn3cTrgD9K87QF2DoUgQclHlR5m8EQjlw,27487
|
|
302
|
+
solokit/work_items/__init__.py,sha256=rJrqPQs3vFQ1apEBqlhSEOUW_gCB-6pleiaIcDbdWjg,77
|
|
303
|
+
solokit/work_items/creator.py,sha256=iEviVSFgStcOYQns-ZCe-cO3PMVWdry0BT4PHTyWWv4,7794
|
|
304
|
+
solokit/work_items/delete.py,sha256=7oR-Vd3ZtOSq8AweHn5eMnwtnBZ8pT52B-RpknoTFig,9266
|
|
305
|
+
solokit/work_items/get_dependencies.py,sha256=TrZlU1TZMrKYuW0j2Az1uOzFqe4CuO2gs4I8C0c3n-8,5941
|
|
306
|
+
solokit/work_items/get_dependents.py,sha256=fHstU_7U9J3JnH_ZAcUh9qKVUZ_d5ob9rcAVp5i2inA,3460
|
|
307
|
+
solokit/work_items/get_metadata.py,sha256=9i3_mLBL0MJC2E-at6jtGDtj3VqvCfTGTqMuq1xa7pg,3711
|
|
308
|
+
solokit/work_items/get_next_recommendations.py,sha256=UWWIDuf59ScgdyMb__jyQ9UUvcRM5NBcuLF4I-jxI9I,3728
|
|
309
|
+
solokit/work_items/manager.py,sha256=59-6NfRwu7DLkYUINrO-G5flYZb0g5-2iVijM-FrRz4,7970
|
|
310
|
+
solokit/work_items/milestones.py,sha256=u1objjyTxbVezgElbAkmBHVWrOC0DHOv4V7AXC9gSxM,4426
|
|
311
|
+
solokit/work_items/query.py,sha256=S9dkiS1z4Lu2RcLIEcjUjXhHshIKQ3i1zmCWSqgxTsw,12703
|
|
312
|
+
solokit/work_items/repository.py,sha256=Y-HnhHshcuVHgPGt9u8pX7MQ6APoW9g3E9NrnpBIbro,8118
|
|
313
|
+
solokit/work_items/scheduler.py,sha256=yathZFCA9fTXAKJCothSJbT1AAtDfyoOnnvE0ulrmDw,5981
|
|
314
|
+
solokit/work_items/spec_parser.py,sha256=lnTnf3OAkkpyfdpriRWEnk-na8KRRaCMMtE5okD0Lvg,28462
|
|
315
|
+
solokit/work_items/spec_validator.py,sha256=AhemI9Ovi8c65zczRycP-60lsVWr149qx7_DR3l2Yu8,16757
|
|
316
|
+
solokit/work_items/updater.py,sha256=YCt6PI28Lz_HNWuhpmmUNdCqZ-pmnqLa5_quVOOR2wg,5826
|
|
317
|
+
solokit/work_items/validator.py,sha256=spcGPt_Py86S2YiHI_LHi2ZnHc2ZYt27G_2d71FEW7E,8518
|
|
318
|
+
solokit-0.1.1.dist-info/licenses/LICENSE,sha256=6HfmtgBWxFcLwsZ67AT5UUU1wRxMcFEVYmMKrzM9dOM,1069
|
|
319
|
+
solokit-0.1.1.dist-info/METADATA,sha256=oHLcZW06QZu2tWFH6oukPHqZPgRnrW_6NkLkPiBlDVw,21050
|
|
320
|
+
solokit-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
321
|
+
solokit-0.1.1.dist-info/entry_points.txt,sha256=iE5dTwCDDLDZy5E_yIpSHSIjSRG0NyDZAHXUnEMkaI8,40
|
|
322
|
+
solokit-0.1.1.dist-info/top_level.txt,sha256=Jm7LjaFwrpXVrMbo4P6al7vfqf712mJmgRzrmCmyQMk,8
|
|
323
|
+
solokit-0.1.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Ankush Dixit
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
solokit
|