chowkidar 0.1.0__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.
- chowkidar-0.1.0/.codemeter/ai_interactions.jsonl +1 -0
- chowkidar-0.1.0/.codemeter/ai_interactions.snapshot.json +1 -0
- chowkidar-0.1.0/.codemeter/ai_summary.json +1 -0
- chowkidar-0.1.0/.codemeter/projects.jsonl +1 -0
- chowkidar-0.1.0/.codemeter/projects.snapshot.json +1 -0
- chowkidar-0.1.0/.codemeter/sessions.jsonl +25 -0
- chowkidar-0.1.0/.codemeter/sessions.snapshot.json +1 -0
- chowkidar-0.1.0/.gitignore +45 -0
- chowkidar-0.1.0/.pre-commit-hooks.yaml +15 -0
- chowkidar-0.1.0/PKG-INFO +152 -0
- chowkidar-0.1.0/README.md +116 -0
- chowkidar-0.1.0/examples/github-action.yml +25 -0
- chowkidar-0.1.0/examples/gitlab-ci.yml +10 -0
- chowkidar-0.1.0/extension/.vscodeignore +7 -0
- chowkidar-0.1.0/extension/media/icon.svg +5 -0
- chowkidar-0.1.0/extension/node_modules/.bin/tsc +1 -0
- chowkidar-0.1.0/extension/node_modules/.bin/tsserver +1 -0
- chowkidar-0.1.0/extension/node_modules/.package-lock.json +46 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/LICENSE +21 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/README.md +15 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/assert/strict.d.ts +8 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/assert.d.ts +1062 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/async_hooks.d.ts +605 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/buffer.buffer.d.ts +471 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/buffer.d.ts +1936 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/child_process.d.ts +1475 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/cluster.d.ts +577 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/compatibility/disposable.d.ts +16 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/compatibility/index.d.ts +9 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/console.d.ts +452 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/constants.d.ts +21 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/crypto.d.ts +4590 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/dgram.d.ts +597 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/dns/promises.d.ts +479 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/dns.d.ts +871 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/domain.d.ts +170 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/events.d.ts +977 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/fs/promises.d.ts +1270 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/fs.d.ts +4375 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/globals.d.ts +172 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/globals.typedarray.d.ts +38 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/http.d.ts +2049 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/http2.d.ts +2631 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/https.d.ts +578 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/index.d.ts +93 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/inspector.generated.d.ts +3966 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/module.d.ts +539 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/net.d.ts +1012 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/os.d.ts +506 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/package.json +140 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/path.d.ts +200 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/perf_hooks.d.ts +961 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/process.d.ts +1961 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/punycode.d.ts +117 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/querystring.d.ts +152 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/readline/promises.d.ts +162 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/readline.d.ts +589 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/repl.d.ts +430 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/sea.d.ts +153 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/stream/consumers.d.ts +38 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/stream/promises.d.ts +90 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/stream/web.d.ts +533 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/stream.d.ts +1675 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/string_decoder.d.ts +67 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/test.d.ts +1787 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/timers/promises.d.ts +108 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/timers.d.ts +286 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/tls.d.ts +1259 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/trace_events.d.ts +197 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/ts5.6/index.d.ts +93 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/tty.d.ts +208 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/url.d.ts +964 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/util.d.ts +2331 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/v8.d.ts +809 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/vm.d.ts +1001 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/wasi.d.ts +181 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/web-globals/events.d.ts +97 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/web-globals/fetch.d.ts +55 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/worker_threads.d.ts +715 -0
- chowkidar-0.1.0/extension/node_modules/@types/node/zlib.d.ts +598 -0
- chowkidar-0.1.0/extension/node_modules/@types/vscode/LICENSE +21 -0
- chowkidar-0.1.0/extension/node_modules/@types/vscode/README.md +15 -0
- chowkidar-0.1.0/extension/node_modules/@types/vscode/index.d.ts +21238 -0
- chowkidar-0.1.0/extension/node_modules/@types/vscode/package.json +26 -0
- chowkidar-0.1.0/extension/node_modules/typescript/LICENSE.txt +55 -0
- chowkidar-0.1.0/extension/node_modules/typescript/README.md +50 -0
- chowkidar-0.1.0/extension/node_modules/typescript/SECURITY.md +41 -0
- chowkidar-0.1.0/extension/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
- chowkidar-0.1.0/extension/node_modules/typescript/bin/tsc +2 -0
- chowkidar-0.1.0/extension/node_modules/typescript/bin/tsserver +2 -0
- chowkidar-0.1.0/extension/node_modules/typescript/package.json +120 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/LICENSE +21 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/README.md +6 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/agent.d.ts +31 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/api.d.ts +43 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/balanced-pool.d.ts +29 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/cache.d.ts +36 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/client.d.ts +108 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/connector.d.ts +34 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/content-type.d.ts +21 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/cookies.d.ts +28 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/dispatcher.d.ts +256 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/errors.d.ts +149 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/eventsource.d.ts +61 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/fetch.d.ts +209 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/file.d.ts +39 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/filereader.d.ts +54 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/formdata.d.ts +108 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/global-origin.d.ts +7 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/handlers.d.ts +15 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/header.d.ts +4 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/index.d.ts +71 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/interceptors.d.ts +17 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/mock-agent.d.ts +50 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/mock-client.d.ts +25 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/mock-errors.d.ts +12 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/mock-pool.d.ts +25 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/package.json +55 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/patch.d.ts +33 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/pool-stats.d.ts +19 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/pool.d.ts +39 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/proxy-agent.d.ts +28 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/readable.d.ts +65 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/retry-agent.d.ts +8 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/retry-handler.d.ts +116 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/util.d.ts +18 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/webidl.d.ts +228 -0
- chowkidar-0.1.0/extension/node_modules/undici-types/websocket.d.ts +150 -0
- chowkidar-0.1.0/extension/out/chowkidarBridge.js +170 -0
- chowkidar-0.1.0/extension/out/chowkidarBridge.js.map +1 -0
- chowkidar-0.1.0/extension/out/codeActions.js +66 -0
- chowkidar-0.1.0/extension/out/codeActions.js.map +1 -0
- chowkidar-0.1.0/extension/out/commands.js +169 -0
- chowkidar-0.1.0/extension/out/commands.js.map +1 -0
- chowkidar-0.1.0/extension/out/diagnostics.js +185 -0
- chowkidar-0.1.0/extension/out/diagnostics.js.map +1 -0
- chowkidar-0.1.0/extension/out/extension.js +102 -0
- chowkidar-0.1.0/extension/out/extension.js.map +1 -0
- chowkidar-0.1.0/extension/out/sidebarProvider.js +230 -0
- chowkidar-0.1.0/extension/out/sidebarProvider.js.map +1 -0
- chowkidar-0.1.0/extension/out/statusBar.js +78 -0
- chowkidar-0.1.0/extension/out/statusBar.js.map +1 -0
- chowkidar-0.1.0/extension/package-lock.json +59 -0
- chowkidar-0.1.0/extension/package.json +119 -0
- chowkidar-0.1.0/extension/src/chowkidarBridge.ts +203 -0
- chowkidar-0.1.0/extension/src/codeActions.ts +49 -0
- chowkidar-0.1.0/extension/src/commands.ts +182 -0
- chowkidar-0.1.0/extension/src/diagnostics.ts +180 -0
- chowkidar-0.1.0/extension/src/extension.ts +94 -0
- chowkidar-0.1.0/extension/src/sidebarProvider.ts +222 -0
- chowkidar-0.1.0/extension/src/statusBar.ts +50 -0
- chowkidar-0.1.0/extension/tsconfig.json +16 -0
- chowkidar-0.1.0/project.md +493 -0
- chowkidar-0.1.0/pyproject.toml +61 -0
- chowkidar-0.1.0/src/chowkidar/__init__.py +3 -0
- chowkidar-0.1.0/src/chowkidar/capabilities.py +152 -0
- chowkidar-0.1.0/src/chowkidar/cli.py +1082 -0
- chowkidar-0.1.0/src/chowkidar/config.py +91 -0
- chowkidar-0.1.0/src/chowkidar/dashboard.py +118 -0
- chowkidar-0.1.0/src/chowkidar/gate.py +147 -0
- chowkidar-0.1.0/src/chowkidar/git_ops.py +165 -0
- chowkidar-0.1.0/src/chowkidar/ide/__init__.py +1 -0
- chowkidar-0.1.0/src/chowkidar/ide/detector.py +56 -0
- chowkidar-0.1.0/src/chowkidar/ide/rules_writer.py +160 -0
- chowkidar-0.1.0/src/chowkidar/ide/templates/__init__.py +1 -0
- chowkidar-0.1.0/src/chowkidar/ide/templates/claude_code.py +57 -0
- chowkidar-0.1.0/src/chowkidar/ide/templates/copilot.py +62 -0
- chowkidar-0.1.0/src/chowkidar/ide/templates/cursor.py +66 -0
- chowkidar-0.1.0/src/chowkidar/ide/templates/windsurf.py +62 -0
- chowkidar-0.1.0/src/chowkidar/mcp_server/__init__.py +1 -0
- chowkidar-0.1.0/src/chowkidar/mcp_server/server.py +201 -0
- chowkidar-0.1.0/src/chowkidar/migration_tester.py +160 -0
- chowkidar-0.1.0/src/chowkidar/predictor.py +103 -0
- chowkidar-0.1.0/src/chowkidar/pricing.py +104 -0
- chowkidar-0.1.0/src/chowkidar/providers/__init__.py +5 -0
- chowkidar-0.1.0/src/chowkidar/providers/anthropic_provider.py +91 -0
- chowkidar-0.1.0/src/chowkidar/providers/base.py +46 -0
- chowkidar-0.1.0/src/chowkidar/providers/google_provider.py +89 -0
- chowkidar-0.1.0/src/chowkidar/providers/mistral_provider.py +91 -0
- chowkidar-0.1.0/src/chowkidar/providers/openai_provider.py +139 -0
- chowkidar-0.1.0/src/chowkidar/registry/__init__.py +5 -0
- chowkidar-0.1.0/src/chowkidar/registry/db.py +290 -0
- chowkidar-0.1.0/src/chowkidar/registry/schema.sql +80 -0
- chowkidar-0.1.0/src/chowkidar/report.py +188 -0
- chowkidar-0.1.0/src/chowkidar/scanner/__init__.py +97 -0
- chowkidar-0.1.0/src/chowkidar/scanner/config_parser.py +160 -0
- chowkidar-0.1.0/src/chowkidar/scanner/env_parser.py +99 -0
- chowkidar-0.1.0/src/chowkidar/scanner/framework_detector.py +110 -0
- chowkidar-0.1.0/src/chowkidar/scanner/patterns.py +124 -0
- chowkidar-0.1.0/src/chowkidar/sentinel/__init__.py +1 -0
- chowkidar-0.1.0/src/chowkidar/sentinel/daemon.py +263 -0
- chowkidar-0.1.0/src/chowkidar/sentinel/notifier.py +111 -0
- chowkidar-0.1.0/src/chowkidar/sentinel/service.py +200 -0
- chowkidar-0.1.0/src/chowkidar/sentinel/webhook.py +81 -0
- chowkidar-0.1.0/src/chowkidar/shell_hook.py +104 -0
- chowkidar-0.1.0/src/chowkidar/slm/__init__.py +1 -0
- chowkidar-0.1.0/src/chowkidar/slm/client.py +92 -0
- chowkidar-0.1.0/src/chowkidar/slm/prompts.py +101 -0
- chowkidar-0.1.0/src/chowkidar/slm/setup.py +168 -0
- chowkidar-0.1.0/src/chowkidar/updater/__init__.py +1 -0
- chowkidar-0.1.0/src/chowkidar/updater/env_writer.py +145 -0
- chowkidar-0.1.0/tests/__init__.py +1 -0
- chowkidar-0.1.0/tests/fixtures/.gitignore +2 -0
- chowkidar-0.1.0/tests/fixtures/sample.env +16 -0
- chowkidar-0.1.0/tests/fixtures/sample_config.json +13 -0
- chowkidar-0.1.0/tests/fixtures/sample_config.yaml +16 -0
- chowkidar-0.1.0/tests/test_capabilities.py +42 -0
- chowkidar-0.1.0/tests/test_config.py +42 -0
- chowkidar-0.1.0/tests/test_dashboard.py +48 -0
- chowkidar-0.1.0/tests/test_framework_detector.py +71 -0
- chowkidar-0.1.0/tests/test_gate.py +75 -0
- chowkidar-0.1.0/tests/test_git_ops.py +28 -0
- chowkidar-0.1.0/tests/test_ide_rules.py +132 -0
- chowkidar-0.1.0/tests/test_migration_tester.py +56 -0
- chowkidar-0.1.0/tests/test_predictor.py +72 -0
- chowkidar-0.1.0/tests/test_pricing.py +42 -0
- chowkidar-0.1.0/tests/test_providers.py +58 -0
- chowkidar-0.1.0/tests/test_registry.py +95 -0
- chowkidar-0.1.0/tests/test_report.py +63 -0
- chowkidar-0.1.0/tests/test_scanner.py +131 -0
- chowkidar-0.1.0/tests/test_shell_hook.py +23 -0
- chowkidar-0.1.0/tests/test_slm.py +65 -0
- chowkidar-0.1.0/tests/test_updater.py +80 -0
- chowkidar-0.1.0/tests/test_webhook.py +40 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"create","interaction":{"id":"5475ec52-34ee-4fc7-a5d1-40b58641f10b","projectKey":"63eef8fa17aad044afdf55d2a7911ff4","timestampMs":1773821870704,"type":"unknown","estimatedInputTokens":500,"estimatedOutputTokens":152,"estimatedCostCents":0.38,"charCount":529,"assumedModel":"claude-sonnet-4.6","editor":"antigravity"}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"lastUpdated":"2026-03-18T08:17:51.720Z","totals":{"totalCostCents":0,"totalInputTokens":0,"totalOutputTokens":0,"totalInteractions":0},"byProject":{},"byDay":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"upsert","project":{"projectKey":"63eef8fa17aad044afdf55d2a7911ff4","displayName":"chowkidar","workspacePath":"c:\\Users\\bhavi\\Projects\\chowkidar","createdAt":1773821494041,"lastActiveAt":1773821535750}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[]
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{"type":"update","sessionId":"d8ea038f-a767-4036-a030-3d6b3e49dc83","patch":{"endMs":1773821535751}}
|
|
2
|
+
{"type":"create","session":{"id":"14f31688-be67-4d2c-9108-74847755a763","projectKey":"63eef8fa17aad044afdf55d2a7911ff4","workspaceFolders":["c:\\Users\\bhavi\\Projects\\chowkidar"],"startMs":1773821535751,"focused":false,"idle":false,"ideInstanceId":"8ff90d23-bc31-4c83-95e6-b20063b55fba","ideType":"antigravity"}}
|
|
3
|
+
{"type":"update","sessionId":"14f31688-be67-4d2c-9108-74847755a763","patch":{"endMs":1773821551550}}
|
|
4
|
+
{"type":"create","session":{"id":"d6a07e1f-e2a1-4106-9240-95b8d335d250","projectKey":"63eef8fa17aad044afdf55d2a7911ff4","workspaceFolders":["c:\\Users\\bhavi\\Projects\\chowkidar"],"startMs":1773821551551,"focused":true,"idle":false,"ideInstanceId":"8ff90d23-bc31-4c83-95e6-b20063b55fba","ideType":"antigravity"}}
|
|
5
|
+
{"type":"update","sessionId":"d6a07e1f-e2a1-4106-9240-95b8d335d250","patch":{"focused":true,"idle":false}}
|
|
6
|
+
{"type":"update","sessionId":"d6a07e1f-e2a1-4106-9240-95b8d335d250","patch":{"focused":true,"idle":false}}
|
|
7
|
+
{"type":"update","sessionId":"d6a07e1f-e2a1-4106-9240-95b8d335d250","patch":{"endMs":1773821777172}}
|
|
8
|
+
{"type":"create","session":{"id":"2f4ebc01-2946-4de1-9adc-89f38b6fd1ee","projectKey":"63eef8fa17aad044afdf55d2a7911ff4","workspaceFolders":["c:\\Users\\bhavi\\Projects\\chowkidar"],"startMs":1773821777174,"focused":false,"idle":false,"ideInstanceId":"8ff90d23-bc31-4c83-95e6-b20063b55fba","ideType":"antigravity"}}
|
|
9
|
+
{"type":"update","sessionId":"2f4ebc01-2946-4de1-9adc-89f38b6fd1ee","patch":{"endMs":1773821793788}}
|
|
10
|
+
{"type":"create","session":{"id":"c2929792-b88f-4335-b2f2-3ff984cd43e2","projectKey":"63eef8fa17aad044afdf55d2a7911ff4","workspaceFolders":["c:\\Users\\bhavi\\Projects\\chowkidar"],"startMs":1773821793789,"focused":true,"idle":false,"ideInstanceId":"8ff90d23-bc31-4c83-95e6-b20063b55fba","ideType":"antigravity"}}
|
|
11
|
+
{"type":"update","sessionId":"c2929792-b88f-4335-b2f2-3ff984cd43e2","patch":{"focused":true,"idle":false}}
|
|
12
|
+
{"type":"update","sessionId":"c2929792-b88f-4335-b2f2-3ff984cd43e2","patch":{"endMs":1773821877796}}
|
|
13
|
+
{"type":"create","session":{"id":"cbea25ed-0fd4-4bec-9322-fcea06db2c54","projectKey":"63eef8fa17aad044afdf55d2a7911ff4","workspaceFolders":["c:\\Users\\bhavi\\Projects\\chowkidar"],"startMs":1773821877797,"focused":false,"idle":false,"ideInstanceId":"8ff90d23-bc31-4c83-95e6-b20063b55fba","ideType":"antigravity"}}
|
|
14
|
+
{"type":"update","sessionId":"cbea25ed-0fd4-4bec-9322-fcea06db2c54","patch":{"endMs":1773821926873}}
|
|
15
|
+
{"type":"create","session":{"id":"a7e57615-c3e3-456e-aaa6-d5a6344e66c5","projectKey":"63eef8fa17aad044afdf55d2a7911ff4","workspaceFolders":["c:\\Users\\bhavi\\Projects\\chowkidar"],"startMs":1773821926877,"focused":true,"idle":false,"ideInstanceId":"8ff90d23-bc31-4c83-95e6-b20063b55fba","ideType":"antigravity"}}
|
|
16
|
+
{"type":"update","sessionId":"a7e57615-c3e3-456e-aaa6-d5a6344e66c5","patch":{"focused":true,"idle":false}}
|
|
17
|
+
{"type":"update","sessionId":"a7e57615-c3e3-456e-aaa6-d5a6344e66c5","patch":{"endMs":1773822057059}}
|
|
18
|
+
{"type":"create","session":{"id":"9366bbd6-9185-4a60-9df9-22594672f003","projectKey":"63eef8fa17aad044afdf55d2a7911ff4","workspaceFolders":["c:\\Users\\bhavi\\Projects\\chowkidar"],"startMs":1773822057061,"focused":true,"idle":true,"ideInstanceId":"8ff90d23-bc31-4c83-95e6-b20063b55fba","ideType":"antigravity"}}
|
|
19
|
+
{"type":"update","sessionId":"9366bbd6-9185-4a60-9df9-22594672f003","patch":{"endMs":1773822213319}}
|
|
20
|
+
{"type":"create","session":{"id":"78956542-d76b-44bd-96fa-326bef11b405","projectKey":"63eef8fa17aad044afdf55d2a7911ff4","workspaceFolders":["c:\\Users\\bhavi\\Projects\\chowkidar"],"startMs":1773822213319,"focused":false,"idle":false,"ideInstanceId":"8ff90d23-bc31-4c83-95e6-b20063b55fba","ideType":"antigravity"}}
|
|
21
|
+
{"type":"update","sessionId":"78956542-d76b-44bd-96fa-326bef11b405","patch":{"endMs":1773822337448}}
|
|
22
|
+
{"type":"create","session":{"id":"5a802d37-31d1-4299-bb21-9a9d9074f23f","projectKey":"63eef8fa17aad044afdf55d2a7911ff4","workspaceFolders":["c:\\Users\\bhavi\\Projects\\chowkidar"],"startMs":1773822337449,"focused":false,"idle":true,"ideInstanceId":"8ff90d23-bc31-4c83-95e6-b20063b55fba","ideType":"antigravity"}}
|
|
23
|
+
{"type":"update","sessionId":"5a802d37-31d1-4299-bb21-9a9d9074f23f","patch":{"endMs":1773825764619}}
|
|
24
|
+
{"type":"create","session":{"id":"59e1454b-f11d-414d-8690-7bb9c32fe9df","projectKey":"63eef8fa17aad044afdf55d2a7911ff4","workspaceFolders":["c:\\Users\\bhavi\\Projects\\chowkidar"],"startMs":1773825764619,"focused":true,"idle":false,"ideInstanceId":"8ff90d23-bc31-4c83-95e6-b20063b55fba","ideType":"antigravity"}}
|
|
25
|
+
{"type":"update","sessionId":"59e1454b-f11d-414d-8690-7bb9c32fe9df","patch":{"focused":true,"idle":false}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[]
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# Environments
|
|
2
|
+
.env
|
|
3
|
+
.venv
|
|
4
|
+
env/
|
|
5
|
+
venv/
|
|
6
|
+
ENV/
|
|
7
|
+
*.bak
|
|
8
|
+
|
|
9
|
+
# SQLite
|
|
10
|
+
registry.db
|
|
11
|
+
*.sqlite3
|
|
12
|
+
|
|
13
|
+
# Byte-compiled / optimized
|
|
14
|
+
__pycache__/
|
|
15
|
+
*.py[cod]
|
|
16
|
+
*$py.class
|
|
17
|
+
|
|
18
|
+
# Distribution / packaging
|
|
19
|
+
build/
|
|
20
|
+
develop-eggs/
|
|
21
|
+
dist/
|
|
22
|
+
downloads/
|
|
23
|
+
eggs/
|
|
24
|
+
.eggs/
|
|
25
|
+
lib/
|
|
26
|
+
lib64/
|
|
27
|
+
parts/
|
|
28
|
+
sdist/
|
|
29
|
+
var/
|
|
30
|
+
wheels/
|
|
31
|
+
*.egg-info/
|
|
32
|
+
.installed.cfg
|
|
33
|
+
*.egg
|
|
34
|
+
|
|
35
|
+
# Testing
|
|
36
|
+
.pytest_cache/
|
|
37
|
+
.coverage
|
|
38
|
+
htmlcov/
|
|
39
|
+
.tox/
|
|
40
|
+
|
|
41
|
+
# IDE / Editor
|
|
42
|
+
.idea/
|
|
43
|
+
.vscode/
|
|
44
|
+
*.swp
|
|
45
|
+
.DS_Store
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
- id: chowkidar-gate
|
|
2
|
+
name: Chowkidar Deprecation Gate
|
|
3
|
+
description: Block commits that contain deprecated LLM model strings
|
|
4
|
+
entry: chowkidar gate
|
|
5
|
+
language: python
|
|
6
|
+
types: [text]
|
|
7
|
+
args: ["--severity", "block-sunset"]
|
|
8
|
+
|
|
9
|
+
- id: chowkidar-staged
|
|
10
|
+
name: Chowkidar Staged File Check
|
|
11
|
+
description: Check only staged files for newly added deprecated models
|
|
12
|
+
entry: python -c "import sys; from chowkidar.gate import run_gate_staged; from pathlib import Path; ec, _ = run_gate_staged(Path('.'), sys.argv[1:]); sys.exit(ec)"
|
|
13
|
+
language: python
|
|
14
|
+
types: [text]
|
|
15
|
+
pass_filenames: true
|
chowkidar-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: chowkidar
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Local-first LLM model deprecation watchdog — scans your configs, alerts on sunsets, and instructs your IDE to update.
|
|
5
|
+
Author: Bhavishya
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: ai,deprecation,llm,mcp,model,watchdog
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
16
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
17
|
+
Requires-Python: >=3.10
|
|
18
|
+
Requires-Dist: filelock>=3.12.0
|
|
19
|
+
Requires-Dist: httpx>=0.25.0
|
|
20
|
+
Requires-Dist: mcp>=1.0.0
|
|
21
|
+
Requires-Dist: plyer>=2.1.0
|
|
22
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
23
|
+
Requires-Dist: pyyaml>=6.0
|
|
24
|
+
Requires-Dist: rich>=13.0.0
|
|
25
|
+
Requires-Dist: schedule>=1.2.0
|
|
26
|
+
Requires-Dist: tenacity>=8.2.0
|
|
27
|
+
Requires-Dist: typer>=0.9.0
|
|
28
|
+
Provides-Extra: dev
|
|
29
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
|
|
30
|
+
Requires-Dist: pytest>=7.0; extra == 'dev'
|
|
31
|
+
Requires-Dist: respx>=0.20.0; extra == 'dev'
|
|
32
|
+
Requires-Dist: ruff>=0.1.0; extra == 'dev'
|
|
33
|
+
Provides-Extra: slm
|
|
34
|
+
Requires-Dist: ollama>=0.4.0; extra == 'slm'
|
|
35
|
+
Description-Content-Type: text/markdown
|
|
36
|
+
|
|
37
|
+
# Chowkidar
|
|
38
|
+
|
|
39
|
+
**Local-first LLM model deprecation watchdog.**
|
|
40
|
+
|
|
41
|
+
Chowkidar scans your project configs for LLM model strings, cross-references them against a local deprecation registry, and alerts you before models sunset — via desktop notifications and IDE rules that instruct AI assistants to update deprecated models automatically.
|
|
42
|
+
|
|
43
|
+
Everything runs on your machine. Zero data exfiltration.
|
|
44
|
+
|
|
45
|
+
## Quick Start
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
pip install chowkidar
|
|
49
|
+
|
|
50
|
+
# First-time setup (initializes config + database)
|
|
51
|
+
chowkidar setup --skip-slm
|
|
52
|
+
|
|
53
|
+
# Fetch deprecation data from providers
|
|
54
|
+
chowkidar sync
|
|
55
|
+
|
|
56
|
+
# Scan your project
|
|
57
|
+
chowkidar scan .
|
|
58
|
+
|
|
59
|
+
# Check for deprecated models
|
|
60
|
+
chowkidar check .
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## Features
|
|
64
|
+
|
|
65
|
+
- **Multi-format scanning**: `.env`, YAML, TOML, JSON, Python, JavaScript, TypeScript
|
|
66
|
+
- **Provider coverage**: OpenAI, Anthropic, Google, Mistral (extensible plugin architecture)
|
|
67
|
+
- **IDE rules (zero-config)**: Auto-generates rules files for Cursor, Claude Code, VS Code/Copilot, Windsurf
|
|
68
|
+
- **MCP server**: Interactive tools for querying deprecation status from your IDE
|
|
69
|
+
- **Desktop notifications**: Threshold-based alerts (90d, 30d, 7d, sunset)
|
|
70
|
+
- **Background daemon**: Periodic scanning with OS-native service installation
|
|
71
|
+
- **Local SLM**: Optional Ollama integration for parsing unstructured deprecation announcements
|
|
72
|
+
- **Safe updates**: File locking, atomic writes, automatic backups, dry-run mode
|
|
73
|
+
- **Cross-platform**: macOS, Linux, Windows
|
|
74
|
+
|
|
75
|
+
## Commands
|
|
76
|
+
|
|
77
|
+
```
|
|
78
|
+
chowkidar setup [--skip-slm] # Initialize config, DB, and optional SLM
|
|
79
|
+
chowkidar scan [PATH] # Scan for model strings
|
|
80
|
+
chowkidar sync # Fetch deprecation data
|
|
81
|
+
chowkidar check [PATH] # Check for deprecated models
|
|
82
|
+
chowkidar status # Show daemon status and watched projects
|
|
83
|
+
chowkidar watch <PATH> # Register project for monitoring
|
|
84
|
+
chowkidar unwatch <PATH> # Unregister project
|
|
85
|
+
chowkidar pin <MODEL> [--reason] # Suppress alerts for a model
|
|
86
|
+
chowkidar unpin <MODEL> # Re-enable alerts
|
|
87
|
+
chowkidar snooze <MODEL> --days # Temporarily suppress alerts
|
|
88
|
+
chowkidar daemon # Start background daemon
|
|
89
|
+
chowkidar install-service # Install OS-native service
|
|
90
|
+
chowkidar mcp # Start MCP server (for IDE)
|
|
91
|
+
chowkidar config [KEY] [VALUE] # View/set configuration
|
|
92
|
+
chowkidar update [--dry-run] # Update deprecated models in .env
|
|
93
|
+
chowkidar rules write [PATH] # Generate IDE rules files
|
|
94
|
+
chowkidar rules clean [PATH] # Remove generated rules files
|
|
95
|
+
chowkidar slm status # Check SLM availability
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## IDE Integration
|
|
99
|
+
|
|
100
|
+
### Automatic Rules (Recommended)
|
|
101
|
+
|
|
102
|
+
Chowkidar writes rules files that AI assistants auto-discover — no configuration needed. If standard desktop notifications about model deprecation are ignored or snoozed, Chowkidar acts as your ultimate fallback: it auto-updates your editor's rules to ensure your AI model knows to update the deprecated model automatically.
|
|
103
|
+
|
|
104
|
+
| Editor | Rules File |
|
|
105
|
+
|---|---|
|
|
106
|
+
| Cursor | `.cursor/rules/chowkidar-alerts.mdc` |
|
|
107
|
+
| Claude Code | `.claude/rules/chowkidar-alerts.md` |
|
|
108
|
+
| VS Code/Copilot | `.github/copilot-instructions.md` |
|
|
109
|
+
| Windsurf | `.windsurfrules` |
|
|
110
|
+
|
|
111
|
+
Run `chowkidar rules write` or let the daemon do it automatically.
|
|
112
|
+
|
|
113
|
+
### MCP Server (Advanced)
|
|
114
|
+
|
|
115
|
+
Add to your IDE's MCP config:
|
|
116
|
+
|
|
117
|
+
```json
|
|
118
|
+
{
|
|
119
|
+
"mcpServers": {
|
|
120
|
+
"chowkidar": {
|
|
121
|
+
"command": "chowkidar",
|
|
122
|
+
"args": ["mcp"]
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
## Configuration
|
|
129
|
+
|
|
130
|
+
Config file: `~/.chowkidar/config.toml`
|
|
131
|
+
|
|
132
|
+
| Key | Default | Description |
|
|
133
|
+
|---|---|---|
|
|
134
|
+
| `auto_update` | `false` | Allow automatic .env modifications |
|
|
135
|
+
| `write_rules` | `true` | Generate IDE rules files |
|
|
136
|
+
| `gitignore_rules` | `true` | Add rules files to .gitignore |
|
|
137
|
+
| `slm_enabled` | `false` | Use local SLM for parsing |
|
|
138
|
+
| `slm_model` | `gemma3:1b` | Ollama model for SLM |
|
|
139
|
+
| `scan_interval_hours` | `4` | How often to scan watched projects |
|
|
140
|
+
| `sync_interval_hours` | `24` | How often to fetch provider data |
|
|
141
|
+
|
|
142
|
+
## Security
|
|
143
|
+
|
|
144
|
+
- **Zero exfiltration**: No env content, API keys, or paths leave your machine
|
|
145
|
+
- **Read-only by default**: File modification requires explicit `auto_update = true`
|
|
146
|
+
- **Atomic writes**: All modifications use temp file + `os.replace`
|
|
147
|
+
- **Automatic backups**: `.env.chowkidar.bak` created before any change
|
|
148
|
+
- **File locking**: Prevents concurrent write corruption
|
|
149
|
+
|
|
150
|
+
## License
|
|
151
|
+
|
|
152
|
+
MIT
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
# Chowkidar
|
|
2
|
+
|
|
3
|
+
**Local-first LLM model deprecation watchdog.**
|
|
4
|
+
|
|
5
|
+
Chowkidar scans your project configs for LLM model strings, cross-references them against a local deprecation registry, and alerts you before models sunset — via desktop notifications and IDE rules that instruct AI assistants to update deprecated models automatically.
|
|
6
|
+
|
|
7
|
+
Everything runs on your machine. Zero data exfiltration.
|
|
8
|
+
|
|
9
|
+
## Quick Start
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install chowkidar
|
|
13
|
+
|
|
14
|
+
# First-time setup (initializes config + database)
|
|
15
|
+
chowkidar setup --skip-slm
|
|
16
|
+
|
|
17
|
+
# Fetch deprecation data from providers
|
|
18
|
+
chowkidar sync
|
|
19
|
+
|
|
20
|
+
# Scan your project
|
|
21
|
+
chowkidar scan .
|
|
22
|
+
|
|
23
|
+
# Check for deprecated models
|
|
24
|
+
chowkidar check .
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Features
|
|
28
|
+
|
|
29
|
+
- **Multi-format scanning**: `.env`, YAML, TOML, JSON, Python, JavaScript, TypeScript
|
|
30
|
+
- **Provider coverage**: OpenAI, Anthropic, Google, Mistral (extensible plugin architecture)
|
|
31
|
+
- **IDE rules (zero-config)**: Auto-generates rules files for Cursor, Claude Code, VS Code/Copilot, Windsurf
|
|
32
|
+
- **MCP server**: Interactive tools for querying deprecation status from your IDE
|
|
33
|
+
- **Desktop notifications**: Threshold-based alerts (90d, 30d, 7d, sunset)
|
|
34
|
+
- **Background daemon**: Periodic scanning with OS-native service installation
|
|
35
|
+
- **Local SLM**: Optional Ollama integration for parsing unstructured deprecation announcements
|
|
36
|
+
- **Safe updates**: File locking, atomic writes, automatic backups, dry-run mode
|
|
37
|
+
- **Cross-platform**: macOS, Linux, Windows
|
|
38
|
+
|
|
39
|
+
## Commands
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
chowkidar setup [--skip-slm] # Initialize config, DB, and optional SLM
|
|
43
|
+
chowkidar scan [PATH] # Scan for model strings
|
|
44
|
+
chowkidar sync # Fetch deprecation data
|
|
45
|
+
chowkidar check [PATH] # Check for deprecated models
|
|
46
|
+
chowkidar status # Show daemon status and watched projects
|
|
47
|
+
chowkidar watch <PATH> # Register project for monitoring
|
|
48
|
+
chowkidar unwatch <PATH> # Unregister project
|
|
49
|
+
chowkidar pin <MODEL> [--reason] # Suppress alerts for a model
|
|
50
|
+
chowkidar unpin <MODEL> # Re-enable alerts
|
|
51
|
+
chowkidar snooze <MODEL> --days # Temporarily suppress alerts
|
|
52
|
+
chowkidar daemon # Start background daemon
|
|
53
|
+
chowkidar install-service # Install OS-native service
|
|
54
|
+
chowkidar mcp # Start MCP server (for IDE)
|
|
55
|
+
chowkidar config [KEY] [VALUE] # View/set configuration
|
|
56
|
+
chowkidar update [--dry-run] # Update deprecated models in .env
|
|
57
|
+
chowkidar rules write [PATH] # Generate IDE rules files
|
|
58
|
+
chowkidar rules clean [PATH] # Remove generated rules files
|
|
59
|
+
chowkidar slm status # Check SLM availability
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## IDE Integration
|
|
63
|
+
|
|
64
|
+
### Automatic Rules (Recommended)
|
|
65
|
+
|
|
66
|
+
Chowkidar writes rules files that AI assistants auto-discover — no configuration needed. If standard desktop notifications about model deprecation are ignored or snoozed, Chowkidar acts as your ultimate fallback: it auto-updates your editor's rules to ensure your AI model knows to update the deprecated model automatically.
|
|
67
|
+
|
|
68
|
+
| Editor | Rules File |
|
|
69
|
+
|---|---|
|
|
70
|
+
| Cursor | `.cursor/rules/chowkidar-alerts.mdc` |
|
|
71
|
+
| Claude Code | `.claude/rules/chowkidar-alerts.md` |
|
|
72
|
+
| VS Code/Copilot | `.github/copilot-instructions.md` |
|
|
73
|
+
| Windsurf | `.windsurfrules` |
|
|
74
|
+
|
|
75
|
+
Run `chowkidar rules write` or let the daemon do it automatically.
|
|
76
|
+
|
|
77
|
+
### MCP Server (Advanced)
|
|
78
|
+
|
|
79
|
+
Add to your IDE's MCP config:
|
|
80
|
+
|
|
81
|
+
```json
|
|
82
|
+
{
|
|
83
|
+
"mcpServers": {
|
|
84
|
+
"chowkidar": {
|
|
85
|
+
"command": "chowkidar",
|
|
86
|
+
"args": ["mcp"]
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
## Configuration
|
|
93
|
+
|
|
94
|
+
Config file: `~/.chowkidar/config.toml`
|
|
95
|
+
|
|
96
|
+
| Key | Default | Description |
|
|
97
|
+
|---|---|---|
|
|
98
|
+
| `auto_update` | `false` | Allow automatic .env modifications |
|
|
99
|
+
| `write_rules` | `true` | Generate IDE rules files |
|
|
100
|
+
| `gitignore_rules` | `true` | Add rules files to .gitignore |
|
|
101
|
+
| `slm_enabled` | `false` | Use local SLM for parsing |
|
|
102
|
+
| `slm_model` | `gemma3:1b` | Ollama model for SLM |
|
|
103
|
+
| `scan_interval_hours` | `4` | How often to scan watched projects |
|
|
104
|
+
| `sync_interval_hours` | `24` | How often to fetch provider data |
|
|
105
|
+
|
|
106
|
+
## Security
|
|
107
|
+
|
|
108
|
+
- **Zero exfiltration**: No env content, API keys, or paths leave your machine
|
|
109
|
+
- **Read-only by default**: File modification requires explicit `auto_update = true`
|
|
110
|
+
- **Atomic writes**: All modifications use temp file + `os.replace`
|
|
111
|
+
- **Automatic backups**: `.env.chowkidar.bak` created before any change
|
|
112
|
+
- **File locking**: Prevents concurrent write corruption
|
|
113
|
+
|
|
114
|
+
## License
|
|
115
|
+
|
|
116
|
+
MIT
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
name: Chowkidar Deprecation Gate
|
|
2
|
+
on:
|
|
3
|
+
pull_request:
|
|
4
|
+
branches: [main, master]
|
|
5
|
+
push:
|
|
6
|
+
branches: [main, master]
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
deprecation-check:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v4
|
|
13
|
+
|
|
14
|
+
- uses: actions/setup-python@v5
|
|
15
|
+
with:
|
|
16
|
+
python-version: "3.11"
|
|
17
|
+
|
|
18
|
+
- name: Install Chowkidar
|
|
19
|
+
run: pip install chowkidar
|
|
20
|
+
|
|
21
|
+
- name: Sync deprecation data
|
|
22
|
+
run: chowkidar sync
|
|
23
|
+
|
|
24
|
+
- name: Run deprecation gate
|
|
25
|
+
run: chowkidar gate . --format github-actions --severity block-sunset
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
deprecation-gate:
|
|
2
|
+
image: python:3.11-slim
|
|
3
|
+
stage: test
|
|
4
|
+
script:
|
|
5
|
+
- pip install chowkidar
|
|
6
|
+
- chowkidar sync
|
|
7
|
+
- chowkidar gate . --format json --severity block-sunset
|
|
8
|
+
rules:
|
|
9
|
+
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
|
|
10
|
+
- if: '$CI_COMMIT_BRANCH == "main"'
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
2
|
+
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/>
|
|
3
|
+
<path d="M12 8v4"/>
|
|
4
|
+
<path d="M12 16h.01"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
../typescript/bin/tsc
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
../typescript/bin/tsserver
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "chowkidar",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"node_modules/@types/node": {
|
|
8
|
+
"version": "20.19.37",
|
|
9
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.37.tgz",
|
|
10
|
+
"integrity": "sha512-8kzdPJ3FsNsVIurqBs7oodNnCEVbni9yUEkaHbgptDACOPW04jimGagZ51E6+lXUwJjgnBw+hyko/lkFWCldqw==",
|
|
11
|
+
"dev": true,
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"undici-types": "~6.21.0"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"node_modules/@types/vscode": {
|
|
18
|
+
"version": "1.110.0",
|
|
19
|
+
"resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.110.0.tgz",
|
|
20
|
+
"integrity": "sha512-AGuxUEpU4F4mfuQjxPPaQVyuOMhs+VT/xRok1jiHVBubHK7lBRvCuOMZG0LKUwxncrPorJ5qq/uil3IdZBd5lA==",
|
|
21
|
+
"dev": true,
|
|
22
|
+
"license": "MIT"
|
|
23
|
+
},
|
|
24
|
+
"node_modules/typescript": {
|
|
25
|
+
"version": "5.9.3",
|
|
26
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
27
|
+
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
28
|
+
"dev": true,
|
|
29
|
+
"license": "Apache-2.0",
|
|
30
|
+
"bin": {
|
|
31
|
+
"tsc": "bin/tsc",
|
|
32
|
+
"tsserver": "bin/tsserver"
|
|
33
|
+
},
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=14.17"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"node_modules/undici-types": {
|
|
39
|
+
"version": "6.21.0",
|
|
40
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
41
|
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
42
|
+
"dev": true,
|
|
43
|
+
"license": "MIT"
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Microsoft Corporation.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Installation
|
|
2
|
+
> `npm install --save @types/node`
|
|
3
|
+
|
|
4
|
+
# Summary
|
|
5
|
+
This package contains type definitions for node (https://nodejs.org/).
|
|
6
|
+
|
|
7
|
+
# Details
|
|
8
|
+
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v20.
|
|
9
|
+
|
|
10
|
+
### Additional Details
|
|
11
|
+
* Last updated: Fri, 06 Mar 2026 00:57:44 GMT
|
|
12
|
+
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
|
+
|
|
14
|
+
# Credits
|
|
15
|
+
These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [Alberto Schiabel](https://github.com/jkomyno), [Andrew Makarov](https://github.com/r3nya), [Benjamin Toueg](https://github.com/btoueg), [David Junger](https://github.com/touffy), [Mohsen Azimi](https://github.com/mohsen1), [Nikita Galkin](https://github.com/galkin), [Sebastian Silbermann](https://github.com/eps1lon), [Wilco Bakker](https://github.com/WilcoBakker), [Marcin Kopacz](https://github.com/chyzwar), [Trivikram Kamat](https://github.com/trivikr), [Junxiao Shi](https://github.com/yoursunny), [Ilia Baryshnikov](https://github.com/qwelias), [ExE Boss](https://github.com/ExE-Boss), [Piotr Błażejewicz](https://github.com/peterblazejewicz), [Anna Henningsen](https://github.com/addaleax), [Victor Perin](https://github.com/victorperin), [NodeJS Contributors](https://github.com/NodeJS), [Linus Unnebäck](https://github.com/LinusU), [wafuwafu13](https://github.com/wafuwafu13), [Matteo Collina](https://github.com/mcollina), and [Dmitry Semigradsky](https://github.com/Semigradsky).
|