paqad-ai 0.1.7 → 0.1.9

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 (28) hide show
  1. package/README.md +20 -18
  2. package/dist/cli/index.js +51 -5
  3. package/dist/cli/index.js.map +1 -1
  4. package/dist/index.d.ts +17 -4
  5. package/dist/index.js +72 -6
  6. package/dist/index.js.map +1 -1
  7. package/package.json +1 -1
  8. package/runtime/base/agents/adversarial-reviewer.md +105 -2
  9. package/runtime/base/agents/context-curator.md +64 -4
  10. package/runtime/base/agents/final-reviewer.md +72 -2
  11. package/runtime/base/agents/gap-detector.md +82 -5
  12. package/runtime/base/agents/market-researcher.md +67 -4
  13. package/runtime/base/agents/product-owner.md +62 -2
  14. package/runtime/base/agents/requirement-analyst.md +128 -3
  15. package/runtime/base/agents/story-designer.md +85 -3
  16. package/runtime/base/agents/test-planner.md +100 -5
  17. package/runtime/base/agents/verifier.md +76 -5
  18. package/runtime/capabilities/coding/agents/data-modeler.md +120 -0
  19. package/runtime/capabilities/coding/agents/database-expert.md +87 -5
  20. package/runtime/capabilities/coding/agents/devops-engineer.md +106 -0
  21. package/runtime/capabilities/coding/agents/doc-maintainer.md +126 -0
  22. package/runtime/capabilities/coding/agents/integration-architect.md +141 -0
  23. package/runtime/capabilities/coding/agents/performance-analyst.md +128 -0
  24. package/runtime/capabilities/coding/agents/solution-architect.md +95 -6
  25. package/runtime/capabilities/coding/agents/ux-ui-analyst.md +104 -5
  26. package/runtime/capabilities/security/agents/security-auditor.md +131 -0
  27. package/runtime/templates/agent-configs/antigravity.md.hbs +10 -0
  28. package/runtime/base/agents/doc-maintainer.md +0 -24
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
 
10
10
  **AI agents that think before they type.** paqad-ai reads your codebase, detects your stack, and generates everything your AI coding agents need to actually understand your project — docs, rules, security checks, MCP configs, and structured workflows. One command. No configuration.
11
11
 
12
- [![npm version](https://img.shields.io/npm/v/paqad-ai)](https://npmjs.com/package/paqad-ai) [![license](https://img.shields.io/npm/l/paqad-ai)](./LICENSE)
12
+ [![npm version](https://img.shields.io/npm/v/paqad-ai)](https://npmjs.com/package/paqad-ai) [![license](https://img.shields.io/npm/l/paqad-ai)](./LICENSE) [![website](https://img.shields.io/badge/website-paqad.ai-0A7A5C)](https://paqad.ai)
13
13
 
14
14
  ---
15
15
 
@@ -19,7 +19,7 @@ You install an AI coding agent. You ask it to help with your Laravel + React pro
19
19
 
20
20
  So you spend an hour writing `CLAUDE.md` by hand. Then you do it again for Cursor. And again for Copilot. And again when your stack changes.
21
21
 
22
- **paqad-ai does all of this automatically — for 9 agents at once.**
22
+ **paqad-ai does all of this automatically — for 10 agents at once.**
23
23
 
24
24
  ---
25
25
 
@@ -35,7 +35,7 @@ paqad-ai reads your lockfiles, detects your stack, asks you to confirm, and gene
35
35
 
36
36
  ```
37
37
  ✓ Detected: laravel + react (inertia, tailwind, pest, docker)
38
- ✓ Generated: CLAUDE.md, AGENTS.md, GEMINI.md, .cursor/rules/paqad.mdc
38
+ ✓ Generated: CLAUDE.md, AGENTS.md, ANTIGRAVITY.md, GEMINI.md, .cursor/rules/paqad.mdc
39
39
  ✓ Generated: .github/copilot-instructions.md, .windsurfrules
40
40
  ✓ Generated: docs/instructions/stack/* (6 files)
41
41
  ✓ Generated: docs/instructions/rules/*
@@ -52,21 +52,22 @@ npx paqad-ai onboard
52
52
 
53
53
  ---
54
54
 
55
- ## 9 supported agents
55
+ ## 10 supported agents
56
56
 
57
57
  One onboarding. Every major AI coding agent. Thin entry files that all point to the same shared instruction bundles:
58
58
 
59
- | Agent | What it generates |
60
- | ------------------ | ------------------------------------------------------ |
61
- | **Claude Code** | `CLAUDE.md` + MCP config |
62
- | **Codex CLI** | `AGENTS.md` + MCP config |
63
- | **Gemini CLI** | `GEMINI.md` + MCP config |
64
- | **Junie** | `.junie/AGENTS.md` + `.junie/mcp/mcp.json` |
65
- | **Cursor** | `.cursor/rules/paqad.mdc` + MCP, skills, agents |
66
- | **GitHub Copilot** | `.github/copilot-instructions.md` + `.vscode/mcp.json` |
67
- | **Windsurf** | `.windsurfrules` + MCP, skills, agents |
68
- | **Continue** | `.continue/rules/paqad.md` + MCP, prompts |
69
- | **Aider** | `CONVENTIONS.md` (config-only) |
59
+ | Agent | What it generates |
60
+ | ---------------------- | ------------------------------------------------------ |
61
+ | **Claude Code** | `CLAUDE.md` + MCP config |
62
+ | **Codex CLI** | `AGENTS.md` + MCP config |
63
+ | **Google Antigravity** | `ANTIGRAVITY.md` + MCP config |
64
+ | **Gemini CLI** | `GEMINI.md` + MCP config |
65
+ | **Junie** | `.junie/AGENTS.md` + `.junie/mcp/mcp.json` |
66
+ | **Cursor** | `.cursor/rules/paqad.mdc` + MCP, skills, agents |
67
+ | **GitHub Copilot** | `.github/copilot-instructions.md` + `.vscode/mcp.json` |
68
+ | **Windsurf** | `.windsurfrules` + MCP, skills, agents |
69
+ | **Continue** | `.continue/rules/paqad.md` + MCP, prompts |
70
+ | **Aider** | `CONVENTIONS.md` (config-only) |
70
71
 
71
72
  Pick one or pick all — `paqad-ai onboard` lets you multi-select. If no `--providers` flag is passed, onboarding defaults to `claude-code`.
72
73
 
@@ -249,7 +250,7 @@ Full project onboarding. The main command.
249
250
  paqad-ai onboard
250
251
 
251
252
  # Explicit stack and providers
252
- paqad-ai onboard --stack laravel --capability react tailwind --providers claude-code cursor
253
+ paqad-ai onboard --stack laravel --capability react tailwind --providers claude-code antigravity cursor
253
254
 
254
255
  # Flutter with all providers
255
256
  paqad-ai onboard --stack flutter
@@ -275,7 +276,7 @@ paqad-ai onboard --providers windsurf continue
275
276
 
276
277
  **Available `--stack` values:** `laravel`, `flutter`, `react`, `vue`, `django`, `fastapi`, `rails`, `spring-boot`, `express`, `angular`, `svelte`, `astro`, `go-web`, `rust-web`, `short-video`
277
278
 
278
- **Available `--providers`:** `claude-code`, `codex-cli`, `gemini-cli`, `junie`, `cursor`, `github-copilot`, `windsurf`, `continue`, `aider`
279
+ **Available `--providers`:** `claude-code`, `codex-cli`, `antigravity`, `gemini-cli`, `junie`, `cursor`, `github-copilot`, `windsurf`, `continue`, `aider`
279
280
 
280
281
  **Notes:**
281
282
 
@@ -361,6 +362,7 @@ paqad-ai patterns export <output> [--format json|markdown]
361
362
  your-project/
362
363
  ├── CLAUDE.md # → docs/instructions/
363
364
  ├── AGENTS.md # → docs/instructions/
365
+ ├── ANTIGRAVITY.md # → docs/instructions/
364
366
  ├── GEMINI.md # → docs/instructions/
365
367
  ├── CONVENTIONS.md # Aider
366
368
  ├── .junie/AGENTS.md # → docs/instructions/
@@ -397,7 +399,7 @@ your-project/
397
399
  └── workflows/ # Custom workflow run state
398
400
  ```
399
401
 
400
- Entry files stay thin. Knowledge lives in shared instruction bundles that all 9 agents read.
402
+ Entry files stay thin. Knowledge lives in shared instruction bundles that all 10 agents read.
401
403
 
402
404
  ---
403
405
 
package/dist/cli/index.js CHANGED
@@ -95,6 +95,7 @@ var PATHS = {
95
95
  MODULE_ERROR_CATALOG: "error-catalog.md",
96
96
  CLAUDE_MD: "CLAUDE.md",
97
97
  AGENTS_MD: "AGENTS.md",
98
+ ANTIGRAVITY_MD: "ANTIGRAVITY.md",
98
99
  GEMINI_MD: "GEMINI.md",
99
100
  SCRIPTS_DIR: "scripts",
100
101
  HOOKS_DIR: ".paqad/hooks",
@@ -1162,7 +1163,10 @@ var onboarding_manifest_schema_default = {
1162
1163
  ],
1163
1164
  properties: {
1164
1165
  framework_version: { type: "string" },
1165
- adapter: { type: "string", enum: ["claude-code", "codex-cli", "gemini-cli", "junie"] },
1166
+ adapter: {
1167
+ type: "string",
1168
+ enum: ["claude-code", "codex-cli", "antigravity", "gemini-cli", "junie"]
1169
+ },
1166
1170
  project_root: { type: "string" },
1167
1171
  profile: { $ref: "project-profile" },
1168
1172
  detected: { anyOf: [{ $ref: "detection-report" }, { type: "null" }] },
@@ -2350,6 +2354,7 @@ function addServer(byName, name, stack, capabilities) {
2350
2354
  var ADAPTER_OUTPUT_PATHS = {
2351
2355
  "claude-code": ".claude/settings.mcp.json",
2352
2356
  "codex-cli": ".codex/mcp.json",
2357
+ antigravity: ".antigravity/mcp.json",
2353
2358
  "gemini-cli": ".gemini/mcp.json",
2354
2359
  junie: ".junie/mcp/mcp.json",
2355
2360
  cursor: ".cursor/mcp.json",
@@ -2583,6 +2588,35 @@ var AiderAdapter = class extends BaseAdapter {
2583
2588
  }
2584
2589
  };
2585
2590
 
2591
+ // src/adapters/antigravity/antigravity-adapter.ts
2592
+ var AntigravityAdapter = class extends BaseAdapter {
2593
+ type = "antigravity";
2594
+ configTemplateName() {
2595
+ return "antigravity.md.hbs";
2596
+ }
2597
+ configOutputPath() {
2598
+ return "ANTIGRAVITY.md";
2599
+ }
2600
+ skillsRoot() {
2601
+ return ".antigravity/skills";
2602
+ }
2603
+ agentsRoot() {
2604
+ return ".antigravity/agents";
2605
+ }
2606
+ hooksOutputPath() {
2607
+ return ".antigravity/hooks.json";
2608
+ }
2609
+ mcpOutputPath() {
2610
+ return ".antigravity/mcp.json";
2611
+ }
2612
+ cacheOutputPath() {
2613
+ return ".antigravity/cache.json";
2614
+ }
2615
+ memoryOutputPath() {
2616
+ return ".antigravity/memory.json";
2617
+ }
2618
+ };
2619
+
2586
2620
  // src/adapters/claude/claude-adapter.ts
2587
2621
  var ClaudeCodeAdapter = class extends BaseAdapter {
2588
2622
  type = "claude-code";
@@ -2863,6 +2897,8 @@ var AdapterFactory = class {
2863
2897
  return new ClaudeCodeAdapter();
2864
2898
  case "codex-cli":
2865
2899
  return new CodexCliAdapter();
2900
+ case "antigravity":
2901
+ return new AntigravityAdapter();
2866
2902
  case "gemini-cli":
2867
2903
  return new GeminiCliAdapter();
2868
2904
  case "junie":
@@ -4790,7 +4826,7 @@ var HealthChecker = class {
4790
4826
  return stale ? warn("Indexes are current", "Registries are stale", "Run the documentation workflow again.") : pass("Indexes are current", "Registries are present and current");
4791
4827
  }
4792
4828
  checkAdapterConfig(projectRoot) {
4793
- const configs = [PATHS.CLAUDE_MD, PATHS.AGENTS_MD, PATHS.GEMINI_MD];
4829
+ const configs = [PATHS.CLAUDE_MD, PATHS.AGENTS_MD, PATHS.ANTIGRAVITY_MD, PATHS.GEMINI_MD];
4794
4830
  const existing = configs.filter((config) => existsSync10(join22(projectRoot, config)));
4795
4831
  return existing.length > 0 ? pass("Adapter config is present", "Adapter config files are present") : fail(
4796
4832
  "Adapter config is present",
@@ -4913,7 +4949,12 @@ var HealthChecker = class {
4913
4949
  "Restore the project profile, then configure stack-appropriate MCP servers."
4914
4950
  );
4915
4951
  }
4916
- const candidates = [".claude/settings.mcp.json", ".codex/mcp.json", ".gemini/mcp.json"];
4952
+ const candidates = [
4953
+ ".claude/settings.mcp.json",
4954
+ ".codex/mcp.json",
4955
+ ".antigravity/mcp.json",
4956
+ ".gemini/mcp.json"
4957
+ ];
4917
4958
  const existing = candidates.filter((candidate) => existsSync10(join22(projectRoot, candidate)));
4918
4959
  const expectedServers = getServersForStack(
4919
4960
  getPrimaryStack(profile),
@@ -7127,6 +7168,11 @@ async function promptProviders(defaultProviders) {
7127
7168
  value: "codex-cli",
7128
7169
  checked: defaultProviders?.includes("codex-cli") ?? true
7129
7170
  },
7171
+ {
7172
+ name: "Antigravity (Google)",
7173
+ value: "antigravity",
7174
+ checked: defaultProviders?.includes("antigravity") ?? false
7175
+ },
7130
7176
  {
7131
7177
  name: "Claude Code (Anthropic)",
7132
7178
  value: "claude-code",
@@ -10844,7 +10890,7 @@ ${p.solution}
10844
10890
  };
10845
10891
 
10846
10892
  // src/index.ts
10847
- var VERSION = "0.1.7";
10893
+ var VERSION = "0.1.9";
10848
10894
 
10849
10895
  // src/cli/commands/capabilities.ts
10850
10896
  import { Command } from "commander";
@@ -10963,7 +11009,7 @@ function printNextSteps() {
10963
11009
  function createOnboardCommand() {
10964
11010
  return new Command4("onboard").description("Full project onboarding").option("--project-root <path>", "Project root", process.cwd()).option("--stack <stack>", "Force the target stack").option("--capability <capability...>", "Add one or more capabilities").option(
10965
11011
  "--providers <provider...>",
10966
- "Select one or more providers (codex-cli, claude-code, gemini-cli, junie, cursor, github-copilot, windsurf, continue, aider)"
11012
+ "Select one or more providers (codex-cli, antigravity, claude-code, gemini-cli, junie, cursor, github-copilot, windsurf, continue, aider)"
10967
11013
  ).action(
10968
11014
  async (options) => {
10969
11015
  printBanner();