-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 4.33 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 4.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@sdsrs/agentsmd",
"version": "5.2.0",
"description": "A global coding-discipline spec for Codex with native hooks, reversible global AGENTS.md installation, and rule-specific opportunity telemetry.",
"homepage": "https://github.com/sdsrss/agentsmd#readme",
"bugs": "https://github.com/sdsrss/agentsmd/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/sdsrss/agentsmd.git"
},
"author": "agentsmd",
"license": "MIT",
"bin": {
"agentsmd": "bin/agentsmd.js"
},
"scripts": {
"test": "PATH=\"$PWD/scripts/tests/fixtures:$PATH\"; export PATH; if [ \"$(command -v codex)\" != \"$PWD/scripts/tests/fixtures/codex\" ]; then echo 'agentsmd: scripts/tests/fixtures/codex must resolve first on PATH — run npm test from the repo root and confirm the fixture is executable' >&2; exit 1; fi; node scripts/tests/live-guard.js snapshot || exit 1; node scripts/tests/live-guard.test.js && node scripts/tests/init.test.js && node scripts/tests/exception.test.js && node scripts/tests/conformance-cases.test.js && node scripts/tests/analyze.test.js && node scripts/tests/argv.test.js && node scripts/tests/install.test.js && node scripts/tests/preflight.test.js && node scripts/tests/lifecycle-lock.test.js && node scripts/tests/lifecycle-journal.test.js && node scripts/tests/fault-injection.test.js && node scripts/tests/repair.test.js && node scripts/tests/backup.test.js && node scripts/tests/audit.test.js && node scripts/tests/sampling-audit.test.js && node scripts/tests/lesson-bypass-audit.test.js && node scripts/tests/sparkline.test.js && node scripts/tests/scorecard.test.js && node scripts/tests/spec-source.test.js && node scripts/tests/contributor-agents.test.js && node scripts/tests/drift.test.js && node scripts/tests/skill-routing.test.js && node scripts/tests/task-contract.test.js && node scripts/tests/verify.test.js && node scripts/tests/hook-contract.test.js && node scripts/tests/event-journal.test.js && node scripts/tests/event-journal-runtime-canary.test.js && node scripts/tests/session-dimension.test.js && node scripts/tests/hook-registry.test.js && node scripts/tests/platform-timeout.test.js && node scripts/tests/plugin-surface.test.js && node scripts/tests/runtime-state.test.js && node scripts/tests/protocol-v2.test.js && node scripts/tests/release-registry-pack.test.js && node scripts/tests/session-exit-modern.test.js && node scripts/tests/session-handoff.test.js && node scripts/tests/session-summary-status.test.js && node scripts/tests/transcript-structure.test.js && node scripts/tests/version-sync.test.js && node scripts/tests/version-cascade-check.test.js && node scripts/tests/lint-argv.test.js && node scripts/tests/safety-coverage.test.js && node scripts/tests/distribution.test.js && node scripts/tests/perf-baseline.test.js && node scripts/tests/design-tokens.test.js && node scripts/tests/design.test.js && bash hooks/tests/smoke.sh; rc=$?; node scripts/tests/live-guard.js verify || rc=1; exit $rc",
"test:phase4": "node scripts/tests/runtime-canary.test.js && node scripts/tests/workflow-static.test.js",
"qa:conformance": "bash qa/conformance-eval.sh",
"test:plugin-marketplace": "bash qa/plugin-marketplace-e2e.sh",
"lint:shell": "shellcheck -S warning install.sh hooks/*.sh hooks/lib/*.sh hooks/tests/*.sh qa/*.sh",
"check": "npm test && npm run test:phase4 && npm run lint:shell",
"prepublishOnly": "npm run check",
"release:version": "node scripts/version-sync.js",
"spec:generate": "node scripts/spec-source.js --generate",
"spec:check": "node scripts/spec-source.js --check",
"spec:install": "node scripts/install.js",
"spec:update": "node scripts/install.js",
"spec:uninstall": "node scripts/uninstall.js",
"audit": "node scripts/audit.js",
"rules": "node scripts/rules.js",
"doctor": "node scripts/doctor.js",
"status": "node scripts/status.js",
"scorecard": "node scripts/scorecard.js"
},
"files": [
"bin",
"spec",
"hooks",
"!hooks/tests",
"scripts",
"!scripts/tests",
"skills",
"automation",
"schemas",
"qa/validation-map.json",
"qa/perf/baseline.json",
"qa/conformance/cases.json",
"hooks.json",
"install.sh",
".agents",
".codex-plugin",
"ARCHITECTURE.md",
"README.md",
"README.zh-CN.md",
"CHANGELOG.md",
"SECURITY.md"
],
"engines": {
"node": ">=18"
}
}