cogitocv 0.1.0

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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +97 -0
  3. package/dist/cli.js +8102 -0
  4. package/package.json +34 -0
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "cogitocv",
3
+ "version": "0.1.0",
4
+ "description": "CogitoCV — Continuous Verification for AI-agent-written code. Verifies a PR diff against rules declared in .cogito/verify.yaml: deterministic probes, secret scanning, and LLM-judged reasoning checks.",
5
+ "license": "MIT",
6
+ "homepage": "https://cogito.cv",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/CogitoAgency/verify.git"
10
+ },
11
+ "keywords": ["continuous-verification", "ai-code-review", "code-verification", "github-actions", "agent-code"],
12
+ "main": "dist/cli.js",
13
+ "bin": {
14
+ "cogitocv": "./dist/cli.js"
15
+ },
16
+ "files": ["dist/cli.js", "README.md"],
17
+ "engines": {
18
+ "node": ">=20"
19
+ },
20
+ "scripts": {
21
+ "build": "tsc",
22
+ "bundle": "esbuild src/cli.ts --bundle --platform=node --target=node20 --outfile=dist/cli.js",
23
+ "prepublishOnly": "npm run bundle",
24
+ "test": "vitest run",
25
+ "typecheck": "tsc --noEmit"
26
+ },
27
+ "devDependencies": {
28
+ "@types/node": "^22.0.0",
29
+ "esbuild": "^0.27.0",
30
+ "typescript": "^5.5.4",
31
+ "vitest": "^4.1.2",
32
+ "yaml": "^2.4.1"
33
+ }
34
+ }