rpg-combat-pi-01/package.json
Willem van den Ende 9a2181318e feat: add user-story-conversation skill and fast-check integration
Add the user-story-conversation Pi skill following Ron Jeffries'
Card, Conversation, Confirmation mantra enhanced with Matt Wynne's
Example Mapping.

The skill guides users through six steps:
1. Card — user story
2. Conversation — Example Mapping (Rules, Examples, Questions, Answers)
3. Allium Spec — formal behavioural specification
4. fast-check Properties — executable verification
5. TypeScript ADTs — value objects and discriminated unions
6. Confirmation — verify all properties pass

Also update AGENTS.md with workflow guidance and add the new skill
to the Allium routing table. Add fast-check as a dependency.
2026-06-12 20:15:30 +01:00

35 lines
857 B
JSON

{
"name": "rpg-combat",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"checks": "npm run format:fix && npm run lint:fix && npm run typecheck && npm test"
},
"keywords": [
"kata"
],
"author": "<put your name here>",
"license": "MIT",
"description": "A TypeScript implementation of RPG Combat",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.1",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vitest": "^4.1.7"
},
"dependencies": {
"fast-check": "^4.8.0"
}
}