claude-cli-advanced-starter-pack 1.0.16 → 1.8.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 (61) hide show
  1. package/OVERVIEW.md +5 -1
  2. package/README.md +241 -132
  3. package/bin/gtask.js +53 -0
  4. package/package.json +1 -1
  5. package/src/cli/menu.js +27 -0
  6. package/src/commands/explore-mcp/mcp-registry.js +99 -0
  7. package/src/commands/init.js +309 -80
  8. package/src/commands/install-panel-hook.js +108 -0
  9. package/src/commands/install-scripts.js +232 -0
  10. package/src/commands/install-skill.js +220 -0
  11. package/src/commands/panel.js +297 -0
  12. package/src/commands/setup-wizard.js +4 -3
  13. package/src/commands/test-setup.js +4 -5
  14. package/src/data/releases.json +209 -0
  15. package/src/panel/queue.js +188 -0
  16. package/templates/commands/ask-claude.template.md +118 -0
  17. package/templates/commands/ccasp-panel.template.md +72 -0
  18. package/templates/commands/ccasp-setup.template.md +470 -79
  19. package/templates/commands/create-smoke-test.template.md +186 -0
  20. package/templates/commands/project-impl.template.md +9 -113
  21. package/templates/commands/refactor-check.template.md +112 -0
  22. package/templates/commands/refactor-cleanup.template.md +144 -0
  23. package/templates/commands/refactor-prep.template.md +192 -0
  24. package/templates/docs/AI_ARCHITECTURE_CONSTITUTION.template.md +198 -0
  25. package/templates/docs/DETAILED_GOTCHAS.template.md +347 -0
  26. package/templates/docs/PHASE-DEV-CHECKLIST.template.md +241 -0
  27. package/templates/docs/PROGRESS_JSON_TEMPLATE.json +117 -0
  28. package/templates/docs/background-agent.template.md +264 -0
  29. package/templates/hooks/autonomous-decision-logger.template.js +207 -0
  30. package/templates/hooks/branch-merge-checker.template.js +272 -0
  31. package/templates/hooks/context-injector.template.js +261 -0
  32. package/templates/hooks/git-commit-tracker.template.js +267 -0
  33. package/templates/hooks/happy-mode-detector.template.js +214 -0
  34. package/templates/hooks/happy-title-generator.template.js +260 -0
  35. package/templates/hooks/issue-completion-detector.template.js +205 -0
  36. package/templates/hooks/panel-queue-reader.template.js +83 -0
  37. package/templates/hooks/phase-validation-gates.template.js +307 -0
  38. package/templates/hooks/session-id-generator.template.js +236 -0
  39. package/templates/hooks/token-budget-loader.template.js +234 -0
  40. package/templates/hooks/token-usage-monitor.template.js +193 -0
  41. package/templates/hooks/tool-output-cacher.template.js +219 -0
  42. package/templates/patterns/README.md +129 -0
  43. package/templates/patterns/l1-l2-orchestration.md +189 -0
  44. package/templates/patterns/multi-phase-orchestration.md +258 -0
  45. package/templates/patterns/two-tier-query-pipeline.md +192 -0
  46. package/templates/scripts/README.md +109 -0
  47. package/templates/scripts/analyze-delegation-log.js +299 -0
  48. package/templates/scripts/autonomous-decision-logger.js +277 -0
  49. package/templates/scripts/git-history-analyzer.py +269 -0
  50. package/templates/scripts/phase-validation-gates.js +307 -0
  51. package/templates/scripts/poll-deployment-status.js +260 -0
  52. package/templates/scripts/roadmap-scanner.js +263 -0
  53. package/templates/scripts/validate-deployment.js +293 -0
  54. package/templates/skills/agent-creator/skill.json +18 -0
  55. package/templates/skills/agent-creator/skill.md +335 -0
  56. package/templates/skills/hook-creator/skill.json +18 -0
  57. package/templates/skills/hook-creator/skill.md +318 -0
  58. package/templates/skills/panel/skill.json +18 -0
  59. package/templates/skills/panel/skill.md +90 -0
  60. package/templates/skills/rag-agent-creator/skill.json +18 -0
  61. package/templates/skills/rag-agent-creator/skill.md +307 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-cli-advanced-starter-pack",
3
- "version": "1.0.16",
3
+ "version": "1.8.0",
4
4
  "description": "Advanced Claude Code CLI toolkit - agents, hooks, skills, MCP servers, phased development, and GitHub integration",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/cli/menu.js CHANGED
@@ -20,9 +20,11 @@ import { runCreatePhaseDev, showPhasDevMainMenu } from '../commands/create-phase
20
20
  import { runExploreMcp, showExploreMcpMenu } from '../commands/explore-mcp.js';
21
21
  import { runClaudeAudit, showClaudeAuditMenu } from '../commands/claude-audit.js';
22
22
  import { runRoadmap, showRoadmapMenu } from '../commands/roadmap.js';
23
+ import { launchPanel } from '../commands/panel.js';
23
24
  import { hasTestingConfig } from '../testing/config.js';
24
25
  import { showHelp } from '../commands/help.js';
25
26
  import { hasValidConfig, getVersion, loadTechStack, saveTechStack } from '../utils.js';
27
+ import { performVersionCheck, formatUpdateBanner } from '../utils/version-check.js';
26
28
 
27
29
  /**
28
30
  * Get bypass permissions status from settings.json
@@ -668,6 +670,20 @@ export async function showMainMenu() {
668
670
  console.log(chalk.yellow(' ⚠ Not configured - run Setup first'));
669
671
  }
670
672
  console.log(chalk.dim(` v${getVersion()}`));
673
+
674
+ // Check for updates (uses 1-hour cache)
675
+ try {
676
+ const updateCheck = await performVersionCheck(process.cwd(), false);
677
+ if (updateCheck.updateAvailable && updateCheck.shouldNotify) {
678
+ const banner = formatUpdateBanner(updateCheck);
679
+ if (banner) {
680
+ console.log(chalk.yellow(banner));
681
+ }
682
+ }
683
+ } catch {
684
+ // Silently ignore update check failures
685
+ }
686
+
671
687
  console.log('');
672
688
 
673
689
  const choices = [
@@ -703,6 +719,12 @@ export async function showMainMenu() {
703
719
  short: 'Install',
704
720
  },
705
721
  new inquirer.Separator(),
722
+ {
723
+ name: `${chalk.bold.white('⚡')} ${chalk.bold.cyan('Launch Control Panel')} ${chalk.dim('Agents, Skills, Hooks, MCP (new window)')}`,
724
+ value: 'launch-panel',
725
+ short: 'Panel',
726
+ },
727
+ new inquirer.Separator(),
706
728
  {
707
729
  name: `${chalk.red('T)')} ${chalk.bold('Testing Setup')} Configure testing mode & credentials`,
708
730
  value: 'test-setup',
@@ -861,6 +883,11 @@ export async function showMainMenu() {
861
883
  await returnToMenu();
862
884
  break;
863
885
 
886
+ case 'launch-panel':
887
+ await launchPanel();
888
+ await returnToMenu();
889
+ break;
890
+
864
891
  case 'help':
865
892
  showHelp();
866
893
  await returnToMenu();
@@ -53,6 +53,21 @@ export const MCP_REGISTRY = {
53
53
  recommended: false,
54
54
  tools: ['playwright_navigate', 'playwright_screenshot', 'playwright_get', 'playwright_post'],
55
55
  },
56
+ {
57
+ id: 'skyvern',
58
+ name: 'Skyvern MCP',
59
+ description: 'AI-powered browser automation - handles complex web tasks with natural language',
60
+ npmPackage: '@skyvern/mcp-server',
61
+ category: 'testing',
62
+ requiredEnv: {
63
+ SKYVERN_API_KEY: { description: 'Skyvern API key from app.skyvern.com' },
64
+ },
65
+ optionalEnv: {},
66
+ relevantFor: ['automation', 'scraping', 'testing', 'e2e', 'frontend'],
67
+ recommended: false,
68
+ tools: ['skyvern_run_task'],
69
+ note: 'AI-powered automation that can handle CAPTCHAs, dynamic content, and complex workflows',
70
+ },
56
71
  ],
57
72
 
58
73
  // Version Control & GitHub
@@ -261,6 +276,90 @@ export const MCP_REGISTRY = {
261
276
  },
262
277
  ],
263
278
 
279
+ // Debugging & Monitoring
280
+ debugging: [
281
+ {
282
+ id: 'log-monitor',
283
+ name: 'Log Monitor MCP',
284
+ description: 'Real-time log tailing, grep, and watching - debug backend services',
285
+ npmPackage: '@anthropic/log-monitor-mcp',
286
+ category: 'debugging',
287
+ requiredEnv: {},
288
+ optionalEnv: {
289
+ LOG_DIR: { description: 'Default directory for log files', default: './logs' },
290
+ },
291
+ relevantFor: ['backend', 'api', 'fastapi', 'express', 'nodejs', 'python'],
292
+ recommended: true,
293
+ tools: ['logs_list', 'logs_tail', 'logs_grep', 'logs_watch', 'logs_watch_stop', 'logs_clear'],
294
+ note: 'Watch log files in real-time, grep for patterns, and clear old logs',
295
+ },
296
+ {
297
+ id: 'browser-monitor',
298
+ name: 'Browser Monitor MCP',
299
+ description: 'Puppeteer browser automation with network and console monitoring',
300
+ npmPackage: '@anthropic/browser-monitor-mcp',
301
+ category: 'debugging',
302
+ requiredEnv: {},
303
+ optionalEnv: {
304
+ BROWSER_HEADLESS: { default: 'new', description: 'Headless mode (new/true/false)' },
305
+ },
306
+ relevantFor: ['frontend', 'react', 'vue', 'angular', 'e2e', 'testing'],
307
+ recommended: false,
308
+ tools: ['puppeteer_navigate', 'puppeteer_screenshot', 'puppeteer_click', 'puppeteer_fill', 'puppeteer_select', 'puppeteer_hover', 'puppeteer_evaluate'],
309
+ note: 'Combined browser automation with network request and console log monitoring',
310
+ },
311
+ ],
312
+
313
+ // Tunnel Services
314
+ tunnel: [
315
+ {
316
+ id: 'ngrok',
317
+ name: 'ngrok Tunnel',
318
+ description: 'Expose local servers via ngrok tunnels for webhook testing and demos',
319
+ command: 'ngrok',
320
+ npmPackage: null,
321
+ category: 'tunnel',
322
+ requiredEnv: {
323
+ NGROK_AUTHTOKEN: { description: 'ngrok auth token from dashboard.ngrok.com' },
324
+ },
325
+ optionalEnv: {},
326
+ relevantFor: ['backend', 'api', 'webhook', 'testing', 'development'],
327
+ recommended: false,
328
+ tools: [],
329
+ note: 'Requires ngrok CLI installed. Not an MCP - use via Bash tool with "ngrok http <port>"',
330
+ installGuide: 'Install from https://ngrok.com/download, then run: ngrok config add-authtoken YOUR_TOKEN',
331
+ },
332
+ {
333
+ id: 'cloudflare-tunnel',
334
+ name: 'Cloudflare Tunnel',
335
+ description: 'Expose local servers via Cloudflare Argo Tunnels - more secure than ngrok',
336
+ command: 'cloudflared',
337
+ npmPackage: null,
338
+ category: 'tunnel',
339
+ requiredEnv: {},
340
+ optionalEnv: {},
341
+ relevantFor: ['backend', 'api', 'cloudflare', 'production'],
342
+ recommended: false,
343
+ tools: [],
344
+ note: 'Requires cloudflared CLI. Use "cloudflared tunnel --url http://localhost:PORT"',
345
+ installGuide: 'Install from https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-and-setup/tunnel-guide/',
346
+ },
347
+ {
348
+ id: 'localtunnel',
349
+ name: 'LocalTunnel',
350
+ description: 'Simple, free tunnels for local development - no signup required',
351
+ npmPackage: 'localtunnel',
352
+ category: 'tunnel',
353
+ requiredEnv: {},
354
+ optionalEnv: {},
355
+ relevantFor: ['backend', 'api', 'development', 'testing'],
356
+ recommended: false,
357
+ tools: [],
358
+ note: 'Simple alternative to ngrok. Use via npx: "npx localtunnel --port 3000"',
359
+ installGuide: 'No installation required. Run: npx localtunnel --port YOUR_PORT',
360
+ },
361
+ ],
362
+
264
363
  // Utilities
265
364
  utilities: [
266
365
  {