haac-aikit 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +119 -0
  3. package/catalog/agents/backend.md +49 -0
  4. package/catalog/agents/devops.md +74 -0
  5. package/catalog/agents/frontend.md +49 -0
  6. package/catalog/agents/implementer.md +55 -0
  7. package/catalog/agents/mobile.md +48 -0
  8. package/catalog/agents/orchestrator.md +53 -0
  9. package/catalog/agents/planner.md +59 -0
  10. package/catalog/agents/researcher.md +62 -0
  11. package/catalog/agents/reviewer.md +70 -0
  12. package/catalog/agents/security-auditor.md +73 -0
  13. package/catalog/agents/tester.md +63 -0
  14. package/catalog/ci/agents-md-sync.yml +42 -0
  15. package/catalog/ci/ci.yml +24 -0
  16. package/catalog/ci/claude.yml +20 -0
  17. package/catalog/ci/secret-scan.yml +20 -0
  18. package/catalog/commands/commit-push-pr.md +21 -0
  19. package/catalog/commands/commit.md +17 -0
  20. package/catalog/commands/debug.md +17 -0
  21. package/catalog/commands/execute.md +13 -0
  22. package/catalog/commands/explore.md +26 -0
  23. package/catalog/commands/plan.md +19 -0
  24. package/catalog/commands/review.md +17 -0
  25. package/catalog/commands/security-review.md +33 -0
  26. package/catalog/commands/ship.md +21 -0
  27. package/catalog/commands/tdd.md +21 -0
  28. package/catalog/devcontainer/devcontainer.json +24 -0
  29. package/catalog/hooks/block-dangerous-bash.sh +30 -0
  30. package/catalog/hooks/block-force-push-main.sh +22 -0
  31. package/catalog/hooks/block-secrets-in-commits.sh +37 -0
  32. package/catalog/hooks/compaction-preservation.sh +29 -0
  33. package/catalog/hooks/file-guard.sh +30 -0
  34. package/catalog/hooks/format-on-save.sh +43 -0
  35. package/catalog/hooks/hooks.json +70 -0
  36. package/catalog/hooks/session-start-prime.sh +31 -0
  37. package/catalog/husky/commit-msg +4 -0
  38. package/catalog/husky/commitlint.config.js +8 -0
  39. package/catalog/husky/gitleaks.toml +10 -0
  40. package/catalog/husky/lintstagedrc.json +5 -0
  41. package/catalog/husky/pre-commit +4 -0
  42. package/catalog/husky/pre-push +18 -0
  43. package/catalog/mcp/mcp.json +19 -0
  44. package/catalog/plugin/plugin.json +10 -0
  45. package/catalog/rules/AGENTS.md.tmpl +46 -0
  46. package/catalog/rules/CLAUDE.md.shim +5 -0
  47. package/catalog/rules/GEMINI.md.shim +5 -0
  48. package/catalog/rules/aider-conventions.md +5 -0
  49. package/catalog/rules/aider.conf.yml +5 -0
  50. package/catalog/rules/copilot-instructions.md +6 -0
  51. package/catalog/rules/cursor-base.mdc +13 -0
  52. package/catalog/rules/windsurf-rules.md +7 -0
  53. package/catalog/settings/env.example +7 -0
  54. package/catalog/settings/settings.json +45 -0
  55. package/catalog/skills/tier1/brainstorming.md +39 -0
  56. package/catalog/skills/tier1/codebase-exploration.md +55 -0
  57. package/catalog/skills/tier1/executing-plans.md +34 -0
  58. package/catalog/skills/tier1/requesting-code-review.md +37 -0
  59. package/catalog/skills/tier1/systematic-debugging.md +50 -0
  60. package/catalog/skills/tier1/test-driven-development.md +44 -0
  61. package/catalog/skills/tier1/using-git-worktrees.md +43 -0
  62. package/catalog/skills/tier1/verification-before-completion.md +46 -0
  63. package/catalog/skills/tier1/writing-commits.md +52 -0
  64. package/catalog/skills/tier1/writing-plans.md +42 -0
  65. package/catalog/skills/tier2/claude-md-improver.md +42 -0
  66. package/catalog/skills/tier2/dependency-hygiene.md +52 -0
  67. package/catalog/skills/tier2/dispatching-parallel-agents.md +43 -0
  68. package/catalog/skills/tier2/finishing-a-development-branch.md +48 -0
  69. package/catalog/skills/tier2/receiving-code-review.md +49 -0
  70. package/catalog/skills/tier2/refactoring-simplify.md +40 -0
  71. package/catalog/skills/tier2/security-review.md +48 -0
  72. package/catalog/skills/tier2/writing-pull-requests.md +47 -0
  73. package/dist/cli.mjs +2161 -0
  74. package/dist/cli.mjs.map +1 -0
  75. package/package.json +64 -0
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "haac-aikit",
3
+ "version": "0.1.0",
4
+ "description": "The batteries-included AI-agentic-coding kit. One command drops a complete, opinionated, cross-tool setup into any repo.",
5
+ "type": "module",
6
+ "bin": {
7
+ "aikit": "./dist/cli.mjs",
8
+ "haac-aikit": "./dist/cli.mjs"
9
+ },
10
+ "exports": {
11
+ ".": "./dist/cli.mjs"
12
+ },
13
+ "files": [
14
+ "dist",
15
+ "catalog"
16
+ ],
17
+ "scripts": {
18
+ "build": "tsup",
19
+ "dev": "tsup --watch",
20
+ "test": "vitest run",
21
+ "test:watch": "vitest",
22
+ "typecheck": "tsc --noEmit",
23
+ "lint": "eslint src --ext .ts",
24
+ "catalog:check": "node scripts/catalog-check.js",
25
+ "prepublishOnly": "pnpm build && pnpm typecheck"
26
+ },
27
+ "dependencies": {
28
+ "@clack/prompts": "^0.9.1",
29
+ "kleur": "^4.1.5",
30
+ "mri": "^1.2.0"
31
+ },
32
+ "devDependencies": {
33
+ "@types/mri": "^1.1.6",
34
+ "@types/node": "^20.17.0",
35
+ "tsup": "^8.4.0",
36
+ "typescript": "^5.7.3",
37
+ "vitest": "^2.1.9"
38
+ },
39
+ "engines": {
40
+ "node": ">=20.0.0"
41
+ },
42
+ "keywords": [
43
+ "ai",
44
+ "agents",
45
+ "claude",
46
+ "cursor",
47
+ "copilot",
48
+ "windsurf",
49
+ "aider",
50
+ "gemini",
51
+ "codex",
52
+ "AGENTS.md",
53
+ "skills",
54
+ "rules"
55
+ ],
56
+ "license": "MIT",
57
+ "repository": {
58
+ "type": "git",
59
+ "url": "https://github.com/mersall/haac-aikit.git"
60
+ },
61
+ "publishConfig": {
62
+ "access": "public"
63
+ }
64
+ }