Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,9 @@ jobs:
uses: actions/setup-node@v7
with:
node-version: 24
- name: Install dependencies
run: npm ci
- name: Type-check TypeScript
run: npm run typecheck
- name: Validate skills and safety contracts
run: node scripts/validate.mjs
run: npm run validate
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,17 @@ Recommended: connect Linear's
[GitHub integration](https://linear.app/docs/github-integration) so linked PRs
can update issue status when they open and merge.

## Development

The repository's executable validation code is TypeScript. Install the locked
dependencies, then run the type-check and validator:

```bash
npm ci
npm run typecheck
npm run validate
```

## Install

Paste this into Claude Code inside the repo where you want the factory:
Expand Down
Loading