@devinnn/docdrift 0.1.0 → 0.1.2
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.
- package/README.md +74 -22
- package/dist/src/cli.js +13 -1
- package/dist/src/config/load.js +21 -1
- package/dist/src/config/normalize.js +68 -0
- package/dist/src/config/schema.js +55 -25
- package/dist/src/config/validate.js +3 -4
- package/dist/src/detect/docsCheck.js +4 -4
- package/dist/src/detect/heuristics.js +2 -2
- package/dist/src/detect/index.js +56 -47
- package/dist/src/detect/openapi.js +92 -9
- package/dist/src/devin/prompts.js +56 -5
- package/dist/src/devin/schemas.js +19 -19
- package/dist/src/devin/v1.js +8 -8
- package/dist/src/evidence/bundle.js +3 -3
- package/dist/src/github/client.js +77 -2
- package/dist/src/index.js +257 -154
- package/dist/src/model/state.js +1 -1
- package/dist/src/policy/confidence.js +1 -1
- package/dist/src/policy/engine.js +6 -5
- package/dist/src/utils/exec.js +2 -2
- package/dist/src/utils/glob.js +13 -0
- package/package.json +18 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devinnn/docdrift",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Detect and remediate documentation drift with Devin sessions",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -11,9 +11,20 @@
|
|
|
11
11
|
"engines": {
|
|
12
12
|
"node": ">=20"
|
|
13
13
|
},
|
|
14
|
-
"files": [
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
"files": [
|
|
15
|
+
"dist/src"
|
|
16
|
+
],
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": ""
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"docs",
|
|
23
|
+
"drift",
|
|
24
|
+
"openapi",
|
|
25
|
+
"devin",
|
|
26
|
+
"github-actions"
|
|
27
|
+
],
|
|
17
28
|
"license": "MIT",
|
|
18
29
|
"scripts": {
|
|
19
30
|
"build": "tsc -p tsconfig.json",
|
|
@@ -21,7 +32,9 @@
|
|
|
21
32
|
"lint": "eslint .",
|
|
22
33
|
"format": "prettier -w .",
|
|
23
34
|
"openapi:export": "tsx apps/api/scripts/export-openapi.ts",
|
|
24
|
-
"docs:
|
|
35
|
+
"docs:gen": "npm run --prefix apps/docs-site docusaurus -- gen-api-docs api",
|
|
36
|
+
"docs:build": "npm run --prefix apps/docs-site build",
|
|
37
|
+
"docs:serve": "npm run --prefix apps/docs-site start",
|
|
25
38
|
"docdrift": "tsx src/cli.ts"
|
|
26
39
|
},
|
|
27
40
|
"dependencies": {
|