codedna 0.2.23__tar.gz → 0.2.24__tar.gz
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.
- {codedna-0.2.23 → codedna-0.2.24}/PKG-INFO +1 -1
- {codedna-0.2.23 → codedna-0.2.24}/codedna/__init__.py +1 -1
- {codedna-0.2.23 → codedna-0.2.24}/codedna/cli.py +29 -55
- {codedna-0.2.23 → codedna-0.2.24}/pyproject.toml +1 -1
- {codedna-0.2.23 → codedna-0.2.24}/.env.example +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/.env.ls +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/.github/CODEOWNERS +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/.github/dependabot.yml +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/.github/workflows/codedna.yml +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/.github/workflows/codeql.yml +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/.github/workflows/test.yml +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/.gitignore +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/.python-version +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/CHANGELOG.md +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/CONTRIBUTING.md +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/LICENSE +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/README.md +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/SECURITY.md +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/ai.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/ai_box.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/ai_fingerprint.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/analyzer.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/api.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/auth.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/bus_factor.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/db.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/git_hook.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/integrations/__init__.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/integrations/github_bot.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/integrations/jira.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/integrations/lemonsqueezy.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/interview.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/onboarding.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/plan.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/protection.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/rate_limit.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/scorer.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/sprint_health.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/survey.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/codedna/tech_debt.py +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/.env.local.example +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/.gitignore +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/README.md +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/ai-compare/page.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/api/auth/login/route.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/api/auth/logout/route.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/api/auth/me/route.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/api/auth/register/route.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/api/billing/checkout/route.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/billing/page.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/bus-factor/page.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/commits/page.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/debt/page.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/favicon.ico +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/files/page.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/fonts/GeistMonoVF.woff +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/fonts/GeistVF.woff +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/globals.css +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/interview/page.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/layout.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/login/page.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/onboarding/page.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/page.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/pricing/page.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/protected/page.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/register/page.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/settings/integrations/page.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/app/sprints/page.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/components/AnlamaGrafigi.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/components/AuthProvider.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/components/ClientProviders.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/components/CommitTable.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/components/CostInfoTooltip.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/components/FeatureGate.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/components/FileHeatmap.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/components/HataBanner.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/components/LanguageSwitcher.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/components/NavClient.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/components/OverviewTitles.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/components/QuickInsights.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/components/RiskBadge.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/components/SummaryCards.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/components/UpgradeBanner.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/lib/api.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/lib/auth.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/lib/i18n/en.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/lib/i18n/index.tsx +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/lib/i18n/tr.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/lib/plan.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/next-env.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/next.config.mjs +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/package-lock.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/package.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/postcss.config.mjs +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/tailwind.config.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/dashboard/tsconfig.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/hooks/post-commit +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/uv.lock +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/.bin/tsc +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/.bin/tsserver +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/.package-lock.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/LICENSE +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/README.md +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/assert/strict.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/assert.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/async_hooks.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/buffer.buffer.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/buffer.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/child_process.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/cluster.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/compatibility/disposable.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/compatibility/index.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/compatibility/indexable.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/compatibility/iterators.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/console.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/constants.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/crypto.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/dgram.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/diagnostics_channel.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/dns/promises.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/dns.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/domain.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/events.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/fs/promises.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/fs.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/globals.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/globals.typedarray.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/http.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/http2.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/https.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/index.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/inspector.generated.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/module.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/net.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/os.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/package.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/path.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/perf_hooks.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/process.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/punycode.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/querystring.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/readline/promises.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/readline.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/repl.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/sea.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/stream/consumers.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/stream/promises.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/stream/web.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/stream.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/string_decoder.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/test.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/timers/promises.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/timers.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/tls.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/trace_events.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/ts5.6/index.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/tty.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/url.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/util.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/v8.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/vm.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/wasi.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/web-globals/domexception.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/web-globals/events.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/web-globals/fetch.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/worker_threads.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/zlib.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/vscode/LICENSE +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/vscode/README.md +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/vscode/index.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/vscode/package.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/LICENSE.txt +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/README.md +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/SECURITY.md +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/ThirdPartyNoticeText.txt +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/bin/tsc +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/bin/tsserver +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/_tsc.js +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/_tsserver.js +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/_typingsInstaller.js +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/de/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/es/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/it/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.decorators.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.decorators.legacy.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.dom.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.dom.iterable.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2015.collection.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2015.core.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2015.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2015.generator.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2015.iterable.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2015.promise.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2015.proxy.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2015.reflect.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2015.symbol.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2016.array.include.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2016.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2016.full.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2016.intl.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2017.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2017.date.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2017.full.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2017.intl.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2017.object.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2017.string.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2018.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2018.full.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2018.intl.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2018.promise.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2018.regexp.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2019.array.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2019.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2019.full.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2019.intl.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2019.object.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2019.string.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2019.symbol.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2020.bigint.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2020.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2020.date.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2020.full.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2020.intl.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2020.number.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2020.promise.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2020.string.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2021.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2021.full.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2021.intl.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2021.promise.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2021.string.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2021.weakref.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2022.array.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2022.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2022.error.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2022.full.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2022.intl.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2022.object.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2022.regexp.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2022.string.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2023.array.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2023.collection.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2023.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2023.full.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2023.intl.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2024.collection.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2024.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2024.full.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2024.object.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2024.promise.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2024.regexp.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es2024.string.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es5.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.es6.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.esnext.array.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.esnext.collection.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.esnext.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.esnext.decorators.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.esnext.disposable.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.esnext.error.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.esnext.float16.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.esnext.full.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.esnext.intl.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.esnext.iterator.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.esnext.promise.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.scripthost.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.webworker.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/lib.webworker.iterable.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/tsc.js +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/tsserver.js +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/tsserverlibrary.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/tsserverlibrary.js +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/typesMap.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/typescript.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/typescript.js +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/typingsInstaller.js +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/watchGuard.js +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/typescript/package.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/LICENSE +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/README.md +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/agent.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/api.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/balanced-pool.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/cache.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/client.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/connector.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/content-type.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/cookies.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/diagnostics-channel.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/dispatcher.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/errors.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/eventsource.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/fetch.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/file.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/filereader.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/formdata.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/global-dispatcher.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/global-origin.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/handlers.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/header.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/index.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/interceptors.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/mock-agent.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/mock-client.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/mock-errors.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/mock-interceptor.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/mock-pool.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/package.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/patch.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/pool-stats.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/pool.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/proxy-agent.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/readable.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/retry-agent.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/retry-handler.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/util.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/webidl.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/undici-types/websocket.d.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/out/apiClient.js.map +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/out/decorations.js.map +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/out/extension.js.map +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/out/statusBar.js.map +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/package-lock.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/package.json +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/src/apiClient.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/src/decorations.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/src/extension.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/src/statusBar.ts +0 -0
- {codedna-0.2.23 → codedna-0.2.24}/vscode-extension/tsconfig.json +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codedna
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.24
|
|
4
4
|
Summary: AI Code Transparency Tool - detect AI-written code and measure developer understanding
|
|
5
5
|
Project-URL: Homepage, https://codedna.dev
|
|
6
6
|
Project-URL: Repository, https://github.com/natureco-official/codedna
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
import sys
|
|
6
5
|
from datetime import datetime
|
|
7
6
|
from pathlib import Path
|
|
8
7
|
from typing import Optional
|
|
@@ -38,31 +37,6 @@ app = typer.Typer(
|
|
|
38
37
|
console = Console()
|
|
39
38
|
|
|
40
39
|
|
|
41
|
-
def _version_callback(value: bool) -> None:
|
|
42
|
-
"""--version bayrağı için callback."""
|
|
43
|
-
if value:
|
|
44
|
-
try:
|
|
45
|
-
from importlib.metadata import version as _v
|
|
46
|
-
ver = _v("codedna")
|
|
47
|
-
except Exception:
|
|
48
|
-
ver = "0.2.23"
|
|
49
|
-
console.print(f"codedna {ver}")
|
|
50
|
-
raise typer.Exit()
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
@app.callback()
|
|
54
|
-
def _main_callback(
|
|
55
|
-
version: bool = typer.Option(
|
|
56
|
-
False, "--version", "-V",
|
|
57
|
-
callback=_version_callback,
|
|
58
|
-
is_eager=True,
|
|
59
|
-
help="Show version and exit.",
|
|
60
|
-
),
|
|
61
|
-
) -> None:
|
|
62
|
-
"""CodeDNA — root callback."""
|
|
63
|
-
pass
|
|
64
|
-
|
|
65
|
-
|
|
66
40
|
def _get_db(repo_path: Optional[Path] = None) -> Path:
|
|
67
41
|
"""Repo'ya özel veritabanı yolunu döndür."""
|
|
68
42
|
kok = repo_path or find_git_root() or Path.cwd()
|
|
@@ -77,7 +51,7 @@ def init(
|
|
|
77
51
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
78
52
|
with_ci: bool = typer.Option(False, "--with-ci", help="GitHub Actions CI şablonunu da oluştur"),
|
|
79
53
|
) -> None:
|
|
80
|
-
"""
|
|
54
|
+
"""Install git hook, create database, and optionally write CI template."""
|
|
81
55
|
console.print()
|
|
82
56
|
console.print(
|
|
83
57
|
Panel.fit(
|
|
@@ -138,7 +112,7 @@ def scan(
|
|
|
138
112
|
max_files: int = typer.Option(200, "--max", "-m", help="Maksimum taranacak dosya sayısı"),
|
|
139
113
|
min_risk: float = typer.Option(0.0, "--min-risk", help="Minimum AI olasılığı filtresi (0.0-1.0)"),
|
|
140
114
|
) -> None:
|
|
141
|
-
"""
|
|
115
|
+
"""Scan current repo and show AI risk report."""
|
|
142
116
|
console.print()
|
|
143
117
|
console.print("[bold cyan]🧬 CodeDNA[/bold cyan] — Repo taranıyor...\n")
|
|
144
118
|
|
|
@@ -226,7 +200,7 @@ def status(
|
|
|
226
200
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
227
201
|
hook: bool = typer.Option(False, "--hook", hidden=True, help="Hook modunda çalış (anket sor)"),
|
|
228
202
|
) -> None:
|
|
229
|
-
"""
|
|
203
|
+
"""Show last commit score (and ask survey in hook mode)."""
|
|
230
204
|
console.print()
|
|
231
205
|
kok = repo or find_git_root() or Path.cwd()
|
|
232
206
|
db_yolu = _get_db(kok)
|
|
@@ -332,7 +306,7 @@ def history(
|
|
|
332
306
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
333
307
|
limit: int = typer.Option(20, "--limit", "-n", help="Gösterilecek commit sayısı"),
|
|
334
308
|
) -> None:
|
|
335
|
-
"""
|
|
309
|
+
"""Show historical commit scores as a table."""
|
|
336
310
|
console.print()
|
|
337
311
|
kok = repo or find_git_root() or Path.cwd()
|
|
338
312
|
db_yolu = _get_db(kok)
|
|
@@ -399,7 +373,7 @@ def serve(
|
|
|
399
373
|
reload: bool = typer.Option(False, "--reload", help="Geliştirme modunda otomatik yeniden başlat"),
|
|
400
374
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
401
375
|
) -> None:
|
|
402
|
-
"""FastAPI REST
|
|
376
|
+
"""Start the FastAPI REST server."""
|
|
403
377
|
import os
|
|
404
378
|
import uvicorn
|
|
405
379
|
|
|
@@ -444,7 +418,7 @@ def report(
|
|
|
444
418
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
445
419
|
open_browser: bool = typer.Option(False, "--open", help="Raporu tarayıcıda aç"),
|
|
446
420
|
) -> None:
|
|
447
|
-
"""HTML
|
|
421
|
+
"""Generate HTML report."""
|
|
448
422
|
import webbrowser
|
|
449
423
|
from datetime import datetime
|
|
450
424
|
from codedna.api import _rapor_html_olustur
|
|
@@ -507,7 +481,7 @@ def report(
|
|
|
507
481
|
def ai_compare(
|
|
508
482
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
509
483
|
) -> None:
|
|
510
|
-
"""
|
|
484
|
+
"""Show repo-wide AI tool comparison table."""
|
|
511
485
|
from codedna.ai_fingerprint import compare_tools_in_repo
|
|
512
486
|
from codedna.plan import is_feature_available
|
|
513
487
|
|
|
@@ -577,7 +551,7 @@ def onboarding(
|
|
|
577
551
|
team: bool = typer.Option(False, "--team", "-t", help="Takım geneli özet"),
|
|
578
552
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
579
553
|
) -> None:
|
|
580
|
-
"""
|
|
554
|
+
"""Measure developer onboarding speed and show ramp-up curve."""
|
|
581
555
|
from codedna.onboarding import (
|
|
582
556
|
get_author_curve, team_onboarding_summary, get_all_authors,
|
|
583
557
|
)
|
|
@@ -712,7 +686,7 @@ def pr_comment(
|
|
|
712
686
|
pr: Optional[int] = typer.Option(None, "--pr", help="PR numarası (boşsa event payload'dan algılanır)"),
|
|
713
687
|
rate: float = typer.Option(75.0, "--rate", help="Teknik borç saatlik ücreti"),
|
|
714
688
|
) -> None:
|
|
715
|
-
"""
|
|
689
|
+
"""Post CodeDNA analysis comment to GitHub PR (updates existing comment, no spam)."""
|
|
716
690
|
import os
|
|
717
691
|
from codedna.integrations.github_bot import (
|
|
718
692
|
format_pr_comment, post_or_update_comment, github_actions_pr_bilgisi,
|
|
@@ -781,7 +755,7 @@ def pr_comment(
|
|
|
781
755
|
# ---------------------------------------------------------------------------
|
|
782
756
|
# codedna protect
|
|
783
757
|
# ---------------------------------------------------------------------------
|
|
784
|
-
protect_app = typer.Typer(help="
|
|
758
|
+
protect_app = typer.Typer(help="Protected module management.")
|
|
785
759
|
app.add_typer(protect_app, name="protect")
|
|
786
760
|
|
|
787
761
|
|
|
@@ -931,7 +905,7 @@ def protect_check(
|
|
|
931
905
|
# ---------------------------------------------------------------------------
|
|
932
906
|
# codedna interview
|
|
933
907
|
# ---------------------------------------------------------------------------
|
|
934
|
-
interview_app = typer.Typer(help="
|
|
908
|
+
interview_app = typer.Typer(help="Candidate interview tool.")
|
|
935
909
|
app.add_typer(interview_app, name="interview")
|
|
936
910
|
|
|
937
911
|
|
|
@@ -941,7 +915,7 @@ def interview_start(
|
|
|
941
915
|
difficulty: str = typer.Option("medium", "--difficulty", "-d", help="Zorluk: easy|medium|hard"),
|
|
942
916
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
943
917
|
) -> None:
|
|
944
|
-
"""
|
|
918
|
+
"""Start new interview session and show anonymized code."""
|
|
945
919
|
from codedna.interview import select_candidate_file, generate_questions, start_session
|
|
946
920
|
from codedna.plan import is_feature_available
|
|
947
921
|
|
|
@@ -1004,7 +978,7 @@ def interview_list(
|
|
|
1004
978
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
1005
979
|
limit: int = typer.Option(10, "--limit", "-n", help="Gösterilecek oturum sayısı"),
|
|
1006
980
|
) -> None:
|
|
1007
|
-
"""
|
|
981
|
+
"""Show historical interview sessions."""
|
|
1008
982
|
from codedna.interview import get_sessions
|
|
1009
983
|
from codedna.plan import is_feature_available
|
|
1010
984
|
|
|
@@ -1053,7 +1027,7 @@ def interview_score(
|
|
|
1053
1027
|
notes: str = typer.Option("", "--notes", "-n", help="Değerlendirici notları"),
|
|
1054
1028
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
1055
1029
|
) -> None:
|
|
1056
|
-
"""
|
|
1030
|
+
"""Add a human review score to an interview session."""
|
|
1057
1031
|
from codedna.interview import submit_score
|
|
1058
1032
|
from codedna.plan import is_feature_available
|
|
1059
1033
|
|
|
@@ -1086,7 +1060,7 @@ def bus_factor(
|
|
|
1086
1060
|
critical: bool = typer.Option(False, "--critical", "-c", help="Sadece kritik (bus_factor=1) dosyaları göster"),
|
|
1087
1061
|
max_files: int = typer.Option(500, "--max", "-m", help="İşlenecek maksimum dosya sayısı"),
|
|
1088
1062
|
) -> None:
|
|
1089
|
-
"""
|
|
1063
|
+
"""Run repo-wide bus factor analysis and show critical ownership risks."""
|
|
1090
1064
|
from codedna.bus_factor import calculate_bus_factor, get_at_risk_files, _BUYUK_REPO_ESIGI
|
|
1091
1065
|
from codedna.plan import is_feature_available
|
|
1092
1066
|
|
|
@@ -1177,7 +1151,7 @@ def debt(
|
|
|
1177
1151
|
rate: float = typer.Option(75.0, "--rate", help="Saatlik maliyet ($/saat)"),
|
|
1178
1152
|
file: Optional[Path] = typer.Option(None, "--file", "-f", help="Tek dosya analizi"),
|
|
1179
1153
|
) -> None:
|
|
1180
|
-
"""
|
|
1154
|
+
"""Calculate repo-wide technical debt cost."""
|
|
1181
1155
|
from codedna.tech_debt import calculate_repo_debt, calculate_file_debt
|
|
1182
1156
|
from codedna.plan import get_current_plan, Plan
|
|
1183
1157
|
|
|
@@ -1294,7 +1268,7 @@ def debt(
|
|
|
1294
1268
|
# ---------------------------------------------------------------------------
|
|
1295
1269
|
# codedna sprint
|
|
1296
1270
|
# ---------------------------------------------------------------------------
|
|
1297
|
-
sprint_app = typer.Typer(help="Sprint
|
|
1271
|
+
sprint_app = typer.Typer(help="Sprint management and health score.")
|
|
1298
1272
|
app.add_typer(sprint_app, name="sprint")
|
|
1299
1273
|
|
|
1300
1274
|
|
|
@@ -1305,7 +1279,7 @@ def sprint_olustur(
|
|
|
1305
1279
|
end: str = typer.Option(..., "--end", "-e", help="Bitiş tarihi (YYYY-MM-DD)"),
|
|
1306
1280
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
1307
1281
|
) -> None:
|
|
1308
|
-
"""
|
|
1282
|
+
"""Create a new sprint and calculate the health score."""
|
|
1309
1283
|
from datetime import datetime as dt
|
|
1310
1284
|
from codedna.sprint_health import calculate_sprint_health, save_sprint_result
|
|
1311
1285
|
from codedna.plan import is_feature_available
|
|
@@ -1427,7 +1401,7 @@ def sprint_gecmisi(
|
|
|
1427
1401
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
1428
1402
|
limit: int = typer.Option(10, "--limit", "-n", help="Gösterilecek sprint sayısı"),
|
|
1429
1403
|
) -> None:
|
|
1430
|
-
"""
|
|
1404
|
+
"""Show historical sprints in a table."""
|
|
1431
1405
|
from codedna.db import get_sprint_history as db_sprint_gecmisi
|
|
1432
1406
|
from codedna.plan import is_feature_available
|
|
1433
1407
|
from datetime import datetime as dt
|
|
@@ -1495,12 +1469,12 @@ def plan(
|
|
|
1495
1469
|
help="Lisans anahtarı (activate ile birlikte kullanılır)",
|
|
1496
1470
|
),
|
|
1497
1471
|
) -> None:
|
|
1498
|
-
"""
|
|
1472
|
+
"""Show current plan or activate a plan with a license key.
|
|
1499
1473
|
|
|
1500
|
-
|
|
1501
|
-
codedna plan #
|
|
1502
|
-
codedna plan activate <KEY> #
|
|
1503
|
-
codedna plan <KEY> #
|
|
1474
|
+
Usage:
|
|
1475
|
+
codedna plan # show current plan
|
|
1476
|
+
codedna plan activate <KEY> # activate license
|
|
1477
|
+
codedna plan <KEY> # shortcut
|
|
1504
1478
|
"""
|
|
1505
1479
|
from codedna.plan import (
|
|
1506
1480
|
Plan as PlanEnum,
|
|
@@ -1585,7 +1559,7 @@ def dashboard(
|
|
|
1585
1559
|
ui_port: int = typer.Option(3000, "--ui-port", help="Next.js dashboard port numarası"),
|
|
1586
1560
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
1587
1561
|
) -> None:
|
|
1588
|
-
"""FastAPI + Next.js dashboard
|
|
1562
|
+
"""Start FastAPI + Next.js dashboard and open in browser."""
|
|
1589
1563
|
import os
|
|
1590
1564
|
import subprocess
|
|
1591
1565
|
import time
|
|
@@ -1694,7 +1668,7 @@ def dashboard(
|
|
|
1694
1668
|
def uninstall(
|
|
1695
1669
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
1696
1670
|
) -> None:
|
|
1697
|
-
"""CodeDNA hook
|
|
1671
|
+
"""Remove CodeDNA hook."""
|
|
1698
1672
|
kok = repo or find_git_root()
|
|
1699
1673
|
if uninstall_hook(kok):
|
|
1700
1674
|
console.print("[green]✓[/green] CodeDNA kaldırıldı.")
|
|
@@ -1722,11 +1696,11 @@ def _kisalt_yol(tam_yol: str, kok: str) -> str:
|
|
|
1722
1696
|
def _risk_etiketi(yuzde: float) -> tuple[str, str]:
|
|
1723
1697
|
"""AI yüzdesine göre risk etiketi ve renk döndür."""
|
|
1724
1698
|
if yuzde >= 70:
|
|
1725
|
-
return "
|
|
1699
|
+
return "YÜKSEK", "red"
|
|
1726
1700
|
elif yuzde >= 40:
|
|
1727
|
-
return "
|
|
1701
|
+
return "ORTA", "yellow"
|
|
1728
1702
|
else:
|
|
1729
|
-
return "
|
|
1703
|
+
return "DÜŞÜK", "green"
|
|
1730
1704
|
|
|
1731
1705
|
|
|
1732
1706
|
def main() -> None:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/assert/strict.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
{codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/async_hooks.d.ts
RENAMED
|
File without changes
|
{codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/buffer.buffer.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
{codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/child_process.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/compatibility/index.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/diagnostics_channel.d.ts
RENAMED
|
File without changes
|
{codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/dns/promises.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/fs/promises.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codedna-0.2.23 → codedna-0.2.24}/vscode-extension/node_modules/@types/node/globals.typedarray.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|