-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.87 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
{
"name": "functional-skill-creator",
"private": true,
"version": "0.1.0",
"description": "Specification repository for functional authoring, migration, testing, and tracing of agent skills.",
"type": "module",
"packageManager": "npm@10.0.0",
"engines": {
"node": ">=20"
},
"scripts": {
"test:skill-scripts": "node --test skills/fskill-creator/scripts/init_skill.test.mjs skills/fskill-creator/scripts/test_cases.test.mjs skills/fskill-creator/sub-skills/migrate/scripts/migrate_proposal.test.mjs",
"test:example-scripts": "node --test examples/meeting-notes-to-actions/scripts/normalize_meeting_notes.test.mjs",
"test:cases": "node skills/fskill-creator/scripts/test_cases.mjs skills/fskill-creator && node skills/fskill-creator/sub-skills/migrate/scripts/test_cases.mjs skills/fskill-creator/sub-skills/migrate && node skills/fskill-creator/scripts/test_cases.mjs examples/meeting-notes-to-actions",
"lint:examples": "node skills/fskill-creator/scripts/lint_skill.mjs examples/meeting-notes-to-actions",
"lint:skills": "node skills/fskill-creator/scripts/lint_skill.mjs skills/fskill-creator && node skills/fskill-creator/scripts/lint_skill.mjs skills/fskill-creator/sub-skills/create && node skills/fskill-creator/sub-skills/migrate/scripts/lint_skill.mjs skills/fskill-creator/sub-skills/migrate",
"check": "npm run test:skill-scripts && npm run test:example-scripts && npm run test:cases && npm run lint:examples && npm run lint:skills"
},
"keywords": [
"agent",
"skills",
"prompt-engineering",
"testing",
"observability"
],
"repository": {
"type": "git",
"url": "https://github.com/AGI-comming/functional-skill-creator.git"
},
"bugs": {
"url": "https://github.com/AGI-comming/functional-skill-creator/issues"
},
"homepage": "https://github.com/AGI-comming/functional-skill-creator#readme",
"license": "MIT"
}