-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.27 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "intent-spec-layer",
"version": "0.2.4",
"description": "Spec layer for AI coding agents: turn intent into EARS requirements and verification obligations",
"private": false,
"type": "module",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://philo-kim.github.io/intent-spec-layer/",
"repository": {
"type": "git",
"url": "git+https://github.com/philo-kim/intent-spec-layer.git"
},
"bugs": {
"url": "https://github.com/philo-kim/intent-spec-layer/issues"
},
"keywords": [
"ai-agents",
"ai-assisted-coding",
"ai-coding",
"coding-agents",
"developer-tools",
"ears",
"requirements",
"requirements-engineering",
"sdd",
"software-engineering",
"spec-driven-development",
"testing",
"verification",
"vibe-coding"
],
"files": [
"_config.yml",
"AGENTS.md",
"CHANGELOG.md",
"CITATION.cff",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"LICENSE",
"LICENSE-CODE.md",
"LICENSE-DOCS.md",
"README.md",
"ROADMAP.md",
"SECURITY.md",
"docs",
"examples",
"experiments",
"generated",
"guide",
"index.md",
"references.md",
"research",
"schemas",
"scripts",
"spec",
"templates",
"tests"
],
"scripts": {
"benchmark": "node experiments/2026-05-sdd-method-comparison/evaluate.mjs",
"simulate": "node experiments/2026-05-llm-codegen-simulation/run.mjs",
"req:test:generate": "node scripts/generate-req-tests.mjs --write",
"test:reqs": "node --test generated/requirements.test.mjs",
"test:project": "node --test tests/*.test.mjs",
"check:syntax": "find experiments scripts tests -name '*.mjs' -print | sort | xargs -n1 node --check",
"check:agent": "node scripts/check-agent-protocol.mjs",
"check:authoring": "node scripts/check-spec-authoring.mjs",
"check:links": "node scripts/check-links.mjs",
"check:reqs": "node scripts/generate-req-tests.mjs --check",
"check:design-spec-coupling": "node scripts/check-design-spec-coupling.mjs",
"check": "npm run check:syntax && npm run check:agent && npm run check:authoring && npm run check:links && npm run check:reqs && npm run check:design-spec-coupling && npm run test:reqs && npm run test:project && npm run benchmark && npm run simulate"
}
}