Skip to content
Merged
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
13 changes: 0 additions & 13 deletions .claude-plugin/plugin.json

This file was deleted.

25 changes: 25 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,28 @@ pnpm typecheck # Type check
1. Create `src/commands/{resource}.ts` + `{resource}.spec.ts` (follow patterns in `organization.ts`)
2. Register in `src/bin.ts` and update `src/utils/help-json.ts` command registry
3. Include JSON mode tests in spec file

## Do / Don't

**Do:**

- Follow the adapter pattern (`CLI`, `Dashboard`, `Headless`) in `src/integrations/` when adding framework installers
- Use `InstallerEventEmitter` for state machine events -- see existing adapters for examples
- Add both human and JSON output modes -- check `OutputMode` usage in `src/bin.ts`
- Follow existing command patterns in `src/commands/organization.ts` when adding resource commands
- Write `.spec.ts` tests alongside every command file

**Don't:**

- Use Node-specific sync APIs (crypto, fs sync) unless necessary
- Use npm or yarn -- pnpm only
- Skip JSON mode tests in spec files
- Forget to wire up new frameworks in `src/run.ts` switch statement

## PR Checklist

- [ ] `pnpm build` passes
- [ ] `pnpm test` passes
- [ ] `pnpm typecheck` passes
- [ ] Conventional Commit message format used (`feat:`, `fix:`, `feat!:` for breaking)
- [ ] New commands include JSON mode support and tests
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
},
"files": [
"dist",
".claude-plugin",
"skills",
"package.json",
"README.md"
],
Expand All @@ -43,6 +41,7 @@
"@clack/prompts": "1.0.1",
"@napi-rs/keyring": "^1.2.0",
"@workos-inc/node": "^8.7.0",
"@workos/skills": "0.2.2",
"chalk": "^5.6.2",
"diff": "^8.0.3",
"fast-glob": "^3.3.3",
Expand Down
10 changes: 10 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

123 changes: 0 additions & 123 deletions skills/workos-authkit-base/SKILL.md

This file was deleted.

Loading