codedna 0.2.28__tar.gz → 0.2.29__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.28 → codedna-0.2.29}/PKG-INFO +1 -1
- {codedna-0.2.28 → codedna-0.2.29}/codedna/__init__.py +1 -1
- {codedna-0.2.28 → codedna-0.2.29}/codedna/cli.py +25 -25
- {codedna-0.2.28 → codedna-0.2.29}/pyproject.toml +1 -1
- {codedna-0.2.28 → codedna-0.2.29}/.env.example +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/.env.ls +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/.github/CODEOWNERS +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/.github/dependabot.yml +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/.github/workflows/codedna.yml +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/.github/workflows/codeql.yml +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/.github/workflows/test.yml +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/.gitignore +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/.python-version +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/CHANGELOG.md +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/CONTRIBUTING.md +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/LICENSE +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/README.md +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/SECURITY.md +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/ai.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/ai_box.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/ai_fingerprint.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/analyzer.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/api.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/auth.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/bus_factor.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/db.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/git_hook.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/integrations/__init__.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/integrations/github_bot.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/integrations/jira.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/integrations/lemonsqueezy.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/interview.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/onboarding.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/plan.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/protection.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/rate_limit.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/scorer.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/sprint_health.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/survey.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/codedna/tech_debt.py +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/.env.local.example +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/.gitignore +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/README.md +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/ai-compare/page.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/api/auth/login/route.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/api/auth/logout/route.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/api/auth/me/route.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/api/auth/register/route.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/api/billing/checkout/route.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/billing/page.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/bus-factor/page.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/commits/page.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/debt/page.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/favicon.ico +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/files/page.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/fonts/GeistMonoVF.woff +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/fonts/GeistVF.woff +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/globals.css +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/interview/page.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/layout.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/login/page.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/onboarding/page.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/page.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/pricing/page.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/protected/page.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/register/page.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/settings/integrations/page.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/app/sprints/page.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/components/AnlamaGrafigi.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/components/AuthProvider.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/components/ClientProviders.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/components/CommitTable.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/components/CostInfoTooltip.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/components/FeatureGate.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/components/FileHeatmap.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/components/HataBanner.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/components/LanguageSwitcher.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/components/NavClient.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/components/OverviewTitles.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/components/QuickInsights.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/components/RiskBadge.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/components/SummaryCards.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/components/UpgradeBanner.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/lib/api.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/lib/auth.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/lib/i18n/en.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/lib/i18n/index.tsx +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/lib/i18n/tr.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/lib/plan.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/next-env.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/next.config.mjs +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/package-lock.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/package.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/postcss.config.mjs +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/tailwind.config.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/dashboard/tsconfig.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/hooks/post-commit +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/uv.lock +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/.bin/tsc +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/.bin/tsserver +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/.package-lock.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/LICENSE +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/README.md +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/assert/strict.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/assert.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/async_hooks.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/buffer.buffer.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/buffer.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/child_process.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/cluster.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/compatibility/disposable.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/compatibility/index.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/compatibility/indexable.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/compatibility/iterators.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/console.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/constants.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/crypto.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/dgram.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/diagnostics_channel.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/dns/promises.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/dns.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/domain.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/events.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/fs/promises.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/fs.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/globals.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/globals.typedarray.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/http.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/http2.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/https.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/index.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/inspector.generated.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/module.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/net.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/os.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/package.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/path.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/perf_hooks.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/process.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/punycode.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/querystring.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/readline/promises.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/readline.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/repl.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/sea.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/stream/consumers.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/stream/promises.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/stream/web.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/stream.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/string_decoder.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/test.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/timers/promises.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/timers.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/tls.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/trace_events.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/ts5.6/index.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/tty.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/url.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/util.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/v8.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/vm.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/wasi.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/web-globals/domexception.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/web-globals/events.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/web-globals/fetch.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/worker_threads.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/zlib.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/vscode/LICENSE +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/vscode/README.md +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/vscode/index.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/vscode/package.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/LICENSE.txt +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/README.md +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/SECURITY.md +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/ThirdPartyNoticeText.txt +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/bin/tsc +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/bin/tsserver +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/_tsc.js +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/_tsserver.js +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/_typingsInstaller.js +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/de/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/es/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/it/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.decorators.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.decorators.legacy.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.dom.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.dom.iterable.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2015.collection.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2015.core.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2015.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2015.generator.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2015.iterable.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2015.promise.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2015.proxy.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2015.reflect.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2015.symbol.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2016.array.include.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2016.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2016.full.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2016.intl.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2017.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2017.date.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2017.full.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2017.intl.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2017.object.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2017.string.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2018.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2018.full.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2018.intl.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2018.promise.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2018.regexp.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2019.array.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2019.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2019.full.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2019.intl.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2019.object.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2019.string.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2019.symbol.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2020.bigint.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2020.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2020.date.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2020.full.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2020.intl.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2020.number.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2020.promise.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2020.string.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2021.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2021.full.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2021.intl.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2021.promise.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2021.string.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2021.weakref.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2022.array.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2022.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2022.error.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2022.full.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2022.intl.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2022.object.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2022.regexp.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2022.string.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2023.array.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2023.collection.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2023.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2023.full.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2023.intl.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2024.collection.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2024.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2024.full.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2024.object.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2024.promise.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2024.regexp.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es2024.string.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es5.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.es6.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.esnext.array.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.esnext.collection.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.esnext.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.esnext.decorators.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.esnext.disposable.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.esnext.error.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.esnext.float16.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.esnext.full.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.esnext.intl.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.esnext.iterator.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.esnext.promise.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.scripthost.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.webworker.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/lib.webworker.iterable.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/tsc.js +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/tsserver.js +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/tsserverlibrary.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/tsserverlibrary.js +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/typesMap.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/typescript.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/typescript.js +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/typingsInstaller.js +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/watchGuard.js +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/typescript/package.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/LICENSE +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/README.md +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/agent.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/api.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/balanced-pool.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/cache.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/client.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/connector.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/content-type.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/cookies.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/diagnostics-channel.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/dispatcher.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/errors.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/eventsource.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/fetch.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/file.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/filereader.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/formdata.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/global-dispatcher.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/global-origin.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/handlers.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/header.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/index.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/interceptors.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/mock-agent.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/mock-client.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/mock-errors.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/mock-interceptor.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/mock-pool.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/package.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/patch.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/pool-stats.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/pool.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/proxy-agent.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/readable.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/retry-agent.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/retry-handler.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/util.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/webidl.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/undici-types/websocket.d.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/out/apiClient.js.map +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/out/decorations.js.map +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/out/extension.js.map +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/out/statusBar.js.map +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/package-lock.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/package.json +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/src/apiClient.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/src/decorations.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/src/extension.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/vscode-extension/src/statusBar.ts +0 -0
- {codedna-0.2.28 → codedna-0.2.29}/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.29
|
|
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
|
|
@@ -45,7 +45,7 @@ def _version_callback(value: bool) -> None:
|
|
|
45
45
|
from importlib.metadata import version as _v
|
|
46
46
|
ver = _v("codedna")
|
|
47
47
|
except Exception:
|
|
48
|
-
ver = "0.2.
|
|
48
|
+
ver = "0.2.29"
|
|
49
49
|
console.print(f"codedna {ver}")
|
|
50
50
|
raise typer.Exit()
|
|
51
51
|
|
|
@@ -138,7 +138,7 @@ def scan(
|
|
|
138
138
|
max_files: int = typer.Option(200, "--max", "-m", help="Maximum number of files to scan"),
|
|
139
139
|
min_risk: float = typer.Option(0.0, "--min-risk", help="Minimum AI probability filter (0.0-1.0)"),
|
|
140
140
|
) -> None:
|
|
141
|
-
"""
|
|
141
|
+
"""Scan current repo and show AI risk report."""
|
|
142
142
|
console.print()
|
|
143
143
|
console.print("[bold cyan]🧬 CodeDNA[/bold cyan] — Repo taranıyor...\n")
|
|
144
144
|
|
|
@@ -226,7 +226,7 @@ def status(
|
|
|
226
226
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
227
227
|
hook: bool = typer.Option(False, "--hook", hidden=True, help="Hook modunda çalış (anket sor)"),
|
|
228
228
|
) -> None:
|
|
229
|
-
"""
|
|
229
|
+
"""Show last commit score (and ask survey in hook mode)."""
|
|
230
230
|
console.print()
|
|
231
231
|
kok = repo or find_git_root() or Path.cwd()
|
|
232
232
|
db_yolu = _get_db(kok)
|
|
@@ -332,7 +332,7 @@ def history(
|
|
|
332
332
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
333
333
|
limit: int = typer.Option(20, "--limit", "-n", help="Number of commits to show"),
|
|
334
334
|
) -> None:
|
|
335
|
-
"""
|
|
335
|
+
"""Show historical commit scores as a table."""
|
|
336
336
|
console.print()
|
|
337
337
|
kok = repo or find_git_root() or Path.cwd()
|
|
338
338
|
db_yolu = _get_db(kok)
|
|
@@ -399,7 +399,7 @@ def serve(
|
|
|
399
399
|
reload: bool = typer.Option(False, "--reload", help="Geliştirme modunda otomatik yeniden başlat"),
|
|
400
400
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
401
401
|
) -> None:
|
|
402
|
-
"""FastAPI REST
|
|
402
|
+
"""Start the FastAPI REST server."""
|
|
403
403
|
import os
|
|
404
404
|
import uvicorn
|
|
405
405
|
|
|
@@ -444,7 +444,7 @@ def report(
|
|
|
444
444
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
445
445
|
open_browser: bool = typer.Option(False, "--open", help="Raporu tarayıcıda aç"),
|
|
446
446
|
) -> None:
|
|
447
|
-
"""HTML
|
|
447
|
+
"""Generate HTML report."""
|
|
448
448
|
import webbrowser
|
|
449
449
|
from datetime import datetime
|
|
450
450
|
from codedna.api import _rapor_html_olustur
|
|
@@ -507,7 +507,7 @@ def report(
|
|
|
507
507
|
def ai_compare(
|
|
508
508
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
509
509
|
) -> None:
|
|
510
|
-
"""
|
|
510
|
+
"""Show repo-wide AI tool comparison table."""
|
|
511
511
|
from codedna.ai_fingerprint import compare_tools_in_repo
|
|
512
512
|
from codedna.plan import is_feature_available
|
|
513
513
|
|
|
@@ -577,7 +577,7 @@ def onboarding(
|
|
|
577
577
|
team: bool = typer.Option(False, "--team", "-t", help="Team-wide summary"),
|
|
578
578
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
579
579
|
) -> None:
|
|
580
|
-
"""
|
|
580
|
+
"""Measure developer onboarding speed and show ramp-up curve."""
|
|
581
581
|
from codedna.onboarding import (
|
|
582
582
|
get_author_curve, team_onboarding_summary, get_all_authors,
|
|
583
583
|
)
|
|
@@ -712,7 +712,7 @@ def pr_comment(
|
|
|
712
712
|
pr: Optional[int] = typer.Option(None, "--pr", help="PR numarası (boşsa event payload'dan algılanır)"),
|
|
713
713
|
rate: float = typer.Option(75.0, "--rate", help="Teknik borç saatlik ücreti"),
|
|
714
714
|
) -> None:
|
|
715
|
-
"""
|
|
715
|
+
"""Post CodeDNA analysis comment to GitHub PR (updates existing comment, no spam)."""
|
|
716
716
|
import os
|
|
717
717
|
from codedna.integrations.github_bot import (
|
|
718
718
|
format_pr_comment, post_or_update_comment, github_actions_pr_bilgisi,
|
|
@@ -781,7 +781,7 @@ def pr_comment(
|
|
|
781
781
|
# ---------------------------------------------------------------------------
|
|
782
782
|
# codedna protect
|
|
783
783
|
# ---------------------------------------------------------------------------
|
|
784
|
-
protect_app = typer.Typer(help="
|
|
784
|
+
protect_app = typer.Typer(help="Protected module management.")
|
|
785
785
|
app.add_typer(protect_app, name="protect")
|
|
786
786
|
|
|
787
787
|
|
|
@@ -931,7 +931,7 @@ def protect_check(
|
|
|
931
931
|
# ---------------------------------------------------------------------------
|
|
932
932
|
# codedna interview
|
|
933
933
|
# ---------------------------------------------------------------------------
|
|
934
|
-
interview_app = typer.Typer(help="
|
|
934
|
+
interview_app = typer.Typer(help="Candidate interview tool.")
|
|
935
935
|
app.add_typer(interview_app, name="interview")
|
|
936
936
|
|
|
937
937
|
|
|
@@ -941,7 +941,7 @@ def interview_start(
|
|
|
941
941
|
difficulty: str = typer.Option("medium", "--difficulty", "-d", help="Zorluk: easy|medium|hard"),
|
|
942
942
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
943
943
|
) -> None:
|
|
944
|
-
"""
|
|
944
|
+
"""Start new interview session and show anonymized code."""
|
|
945
945
|
from codedna.interview import select_candidate_file, generate_questions, start_session
|
|
946
946
|
from codedna.plan import is_feature_available
|
|
947
947
|
|
|
@@ -1004,7 +1004,7 @@ def interview_list(
|
|
|
1004
1004
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
1005
1005
|
limit: int = typer.Option(10, "--limit", "-n", help="Gösterilecek oturum sayısı"),
|
|
1006
1006
|
) -> None:
|
|
1007
|
-
"""
|
|
1007
|
+
"""Show historical interview sessions."""
|
|
1008
1008
|
from codedna.interview import get_sessions
|
|
1009
1009
|
from codedna.plan import is_feature_available
|
|
1010
1010
|
|
|
@@ -1053,7 +1053,7 @@ def interview_score(
|
|
|
1053
1053
|
notes: str = typer.Option("", "--notes", "-n", help="Değerlendirici notları"),
|
|
1054
1054
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
1055
1055
|
) -> None:
|
|
1056
|
-
"""
|
|
1056
|
+
"""Add a human review score to an interview session."""
|
|
1057
1057
|
from codedna.interview import submit_score
|
|
1058
1058
|
from codedna.plan import is_feature_available
|
|
1059
1059
|
|
|
@@ -1086,7 +1086,7 @@ def bus_factor(
|
|
|
1086
1086
|
critical: bool = typer.Option(False, "--critical", "-c", help="Sadece kritik (bus_factor=1) dosyaları göster"),
|
|
1087
1087
|
max_files: int = typer.Option(500, "--max", "-m", help="İşlenecek maksimum dosya sayısı"),
|
|
1088
1088
|
) -> None:
|
|
1089
|
-
"""
|
|
1089
|
+
"""Run repo-wide bus factor analysis and show critical ownership risks."""
|
|
1090
1090
|
from codedna.bus_factor import calculate_bus_factor, get_at_risk_files, _BUYUK_REPO_ESIGI
|
|
1091
1091
|
from codedna.plan import is_feature_available
|
|
1092
1092
|
|
|
@@ -1177,7 +1177,7 @@ def debt(
|
|
|
1177
1177
|
rate: float = typer.Option(75.0, "--rate", help="Saatlik maliyet ($/saat)"),
|
|
1178
1178
|
file: Optional[Path] = typer.Option(None, "--file", "-f", help="Tek dosya analizi"),
|
|
1179
1179
|
) -> None:
|
|
1180
|
-
"""
|
|
1180
|
+
"""Calculate repo-wide technical debt cost."""
|
|
1181
1181
|
from codedna.tech_debt import calculate_repo_debt, calculate_file_debt
|
|
1182
1182
|
from codedna.plan import get_current_plan, Plan
|
|
1183
1183
|
|
|
@@ -1294,7 +1294,7 @@ def debt(
|
|
|
1294
1294
|
# ---------------------------------------------------------------------------
|
|
1295
1295
|
# codedna sprint
|
|
1296
1296
|
# ---------------------------------------------------------------------------
|
|
1297
|
-
sprint_app = typer.Typer(help="Sprint
|
|
1297
|
+
sprint_app = typer.Typer(help="Sprint management and health score.")
|
|
1298
1298
|
app.add_typer(sprint_app, name="sprint")
|
|
1299
1299
|
|
|
1300
1300
|
|
|
@@ -1305,7 +1305,7 @@ def sprint_olustur(
|
|
|
1305
1305
|
end: str = typer.Option(..., "--end", "-e", help="Bitiş tarihi (YYYY-MM-DD)"),
|
|
1306
1306
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
1307
1307
|
) -> None:
|
|
1308
|
-
"""
|
|
1308
|
+
"""Create a new sprint and calculate the health score."""
|
|
1309
1309
|
from datetime import datetime as dt
|
|
1310
1310
|
from codedna.sprint_health import calculate_sprint_health, save_sprint_result
|
|
1311
1311
|
from codedna.plan import is_feature_available
|
|
@@ -1495,12 +1495,12 @@ def plan(
|
|
|
1495
1495
|
help="License key (used with activate)",
|
|
1496
1496
|
),
|
|
1497
1497
|
) -> None:
|
|
1498
|
-
"""
|
|
1498
|
+
"""Show current plan or activate a plan with a license key.
|
|
1499
1499
|
|
|
1500
|
-
|
|
1501
|
-
codedna plan #
|
|
1502
|
-
codedna plan activate <KEY> #
|
|
1503
|
-
codedna plan <KEY> #
|
|
1500
|
+
Usage:
|
|
1501
|
+
codedna plan # show current plan
|
|
1502
|
+
codedna plan activate <KEY> # activate license
|
|
1503
|
+
codedna plan <KEY> # shortcut
|
|
1504
1504
|
"""
|
|
1505
1505
|
from codedna.plan import (
|
|
1506
1506
|
Plan as PlanEnum,
|
|
@@ -1585,7 +1585,7 @@ def dashboard(
|
|
|
1585
1585
|
ui_port: int = typer.Option(3000, "--ui-port", help="Next.js dashboard port numarası"),
|
|
1586
1586
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
1587
1587
|
) -> None:
|
|
1588
|
-
"""FastAPI + Next.js dashboard
|
|
1588
|
+
"""Start FastAPI + Next.js dashboard and open in browser."""
|
|
1589
1589
|
import os
|
|
1590
1590
|
import subprocess
|
|
1591
1591
|
import time
|
|
@@ -1694,7 +1694,7 @@ def dashboard(
|
|
|
1694
1694
|
def uninstall(
|
|
1695
1695
|
repo: Optional[Path] = typer.Option(None, "--repo", "-r", help="Git repo dizini"),
|
|
1696
1696
|
) -> None:
|
|
1697
|
-
"""CodeDNA hook
|
|
1697
|
+
"""Remove CodeDNA hook."""
|
|
1698
1698
|
kok = repo or find_git_root()
|
|
1699
1699
|
if uninstall_hook(kok):
|
|
1700
1700
|
console.print("[green]✓[/green] CodeDNA kaldırıldı.")
|
|
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.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/assert/strict.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
{codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/async_hooks.d.ts
RENAMED
|
File without changes
|
{codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/buffer.buffer.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
{codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/child_process.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codedna-0.2.28 → codedna-0.2.29}/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.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/diagnostics_channel.d.ts
RENAMED
|
File without changes
|
{codedna-0.2.28 → codedna-0.2.29}/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.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/fs/promises.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/globals.typedarray.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/inspector.generated.d.ts
RENAMED
|
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.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/querystring.d.ts
RENAMED
|
File without changes
|
{codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/readline/promises.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/stream/consumers.d.ts
RENAMED
|
File without changes
|
{codedna-0.2.28 → codedna-0.2.29}/vscode-extension/node_modules/@types/node/stream/promises.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|