@api-doctor/cli 0.0.1

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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +26 -0
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # @api-doctor/cli
2
+
3
+
4
+ Oxlint-powered checks for AI-generated API integrations. Catch silent bugs before they ship.
5
+
6
+ **This package is a placeholder.** The CLI is in active development.
7
+
8
+ When released, you'll be able to run:
9
+
10
+ npx @api-doctor/cli .
11
+
12
+
13
+ to scan AI-generated code for integration bugs across providers like Resend, Stripe, Supabase, and Railway.
14
+
15
+ Follow progress at [github.com/qualtyco/api-doctor](https://github.com/qualtyco/api-doctor).
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@api-doctor/cli",
3
+ "version": "0.0.1",
4
+ "description": "Oxlint-powered checks for AI-generated API integrations. Catch silent bugs before they ship.",
5
+ "license": "MIT",
6
+ "author": "Reuben Santoso",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/qualtyco/api-doctor.git"
10
+ },
11
+ "homepage": "https://github.com/qualtyco/api-doctor",
12
+ "bugs": {
13
+ "url": "https://github.com/qualtyco/api-doctor/issues"
14
+ },
15
+ "keywords": [
16
+ "api",
17
+ "linter",
18
+ "oxlint",
19
+ "verification",
20
+ "ai",
21
+ "agent",
22
+ "cursor",
23
+ "claude-code",
24
+ "static-analysis"
25
+ ]
26
+ }