bps-kit 1.0.4 → 1.0.6
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.
- package/package.json +1 -1
- package/templates/VAULT_INDEX.md +2 -2
- package/templates/agents-template/agents/backend-specialist.md +263 -0
- package/templates/agents-template/agents/code-archaeologist.md +106 -0
- package/templates/agents-template/agents/database-architect.md +226 -0
- package/templates/agents-template/agents/debugger.md +225 -0
- package/templates/agents-template/agents/devops-engineer.md +242 -0
- package/templates/agents-template/agents/documentation-writer.md +104 -0
- package/templates/agents-template/agents/explorer-agent.md +73 -0
- package/templates/agents-template/agents/frontend-specialist.md +593 -0
- package/templates/agents-template/agents/game-developer.md +162 -0
- package/templates/agents-template/agents/mobile-developer.md +377 -0
- package/templates/agents-template/agents/orchestrator.md +416 -0
- package/templates/agents-template/agents/penetration-tester.md +188 -0
- package/templates/agents-template/agents/performance-optimizer.md +187 -0
- package/templates/agents-template/agents/product-manager.md +112 -0
- package/templates/agents-template/agents/product-owner.md +95 -0
- package/templates/agents-template/agents/project-planner.md +406 -0
- package/templates/agents-template/agents/qa-automation-engineer.md +103 -0
- package/templates/agents-template/agents/security-auditor.md +170 -0
- package/templates/agents-template/agents/seo-specialist.md +111 -0
- package/templates/agents-template/agents/test-engineer.md +158 -0
- package/templates/agents-template/rules/GEMINI.md +4 -4
- package/templates/agents-template/scripts/auto_preview.py +148 -0
- package/templates/agents-template/scripts/checklist.py +217 -0
- package/templates/agents-template/scripts/session_manager.py +120 -0
- package/templates/agents-template/scripts/verify_all.py +327 -0
- package/templates/agents-template/workflows/brainstorm.md +113 -0
- package/templates/agents-template/workflows/create.md +59 -0
- package/templates/agents-template/workflows/debug.md +103 -0
- package/templates/agents-template/workflows/deploy.md +176 -0
- package/templates/agents-template/workflows/enhance.md +63 -0
- package/templates/agents-template/workflows/orchestrate.md +237 -0
- package/templates/agents-template/workflows/plan.md +89 -0
- package/templates/agents-template/workflows/preview.md +81 -0
- package/templates/agents-template/workflows/status.md +86 -0
- package/templates/agents-template/workflows/test.md +144 -0
- package/templates/agents-template/workflows/ui-ux-pro-max.md +296 -0
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
Session Manager - Antigravity Kit
|
|
4
|
+
=================================
|
|
5
|
+
Analyzes project state, detects tech stack, tracks file statistics, and provides
|
|
6
|
+
a summary of the current session.
|
|
7
|
+
|
|
8
|
+
Usage:
|
|
9
|
+
python .agent/scripts/session_manager.py status [path]
|
|
10
|
+
python .agent/scripts/session_manager.py info [path]
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
import os
|
|
14
|
+
import json
|
|
15
|
+
import argparse
|
|
16
|
+
from pathlib import Path
|
|
17
|
+
from typing import Dict, Any, List
|
|
18
|
+
|
|
19
|
+
def get_project_root(path: str) -> Path:
|
|
20
|
+
return Path(path).resolve()
|
|
21
|
+
|
|
22
|
+
def analyze_package_json(root: Path) -> Dict[str, Any]:
|
|
23
|
+
pkg_file = root / "package.json"
|
|
24
|
+
if not pkg_file.exists():
|
|
25
|
+
return {"type": "unknown", "dependencies": {}}
|
|
26
|
+
|
|
27
|
+
try:
|
|
28
|
+
with open(pkg_file, 'r', encoding='utf-8') as f:
|
|
29
|
+
data = json.load(f)
|
|
30
|
+
|
|
31
|
+
deps = data.get("dependencies", {})
|
|
32
|
+
dev_deps = data.get("devDependencies", {})
|
|
33
|
+
all_deps = {**deps, **dev_deps}
|
|
34
|
+
|
|
35
|
+
stack = []
|
|
36
|
+
if "next" in all_deps: stack.append("Next.js")
|
|
37
|
+
elif "react" in all_deps: stack.append("React")
|
|
38
|
+
elif "vue" in all_deps: stack.append("Vue")
|
|
39
|
+
elif "svelte" in all_deps: stack.append("Svelte")
|
|
40
|
+
elif "express" in all_deps: stack.append("Express")
|
|
41
|
+
elif "nestjs" in all_deps or "@nestjs/core" in all_deps: stack.append("NestJS")
|
|
42
|
+
|
|
43
|
+
if "tailwindcss" in all_deps: stack.append("Tailwind CSS")
|
|
44
|
+
if "prisma" in all_deps: stack.append("Prisma")
|
|
45
|
+
if "typescript" in all_deps: stack.append("TypeScript")
|
|
46
|
+
|
|
47
|
+
return {
|
|
48
|
+
"name": data.get("name", "unnamed"),
|
|
49
|
+
"version": data.get("version", "0.0.0"),
|
|
50
|
+
"stack": stack,
|
|
51
|
+
"scripts": list(data.get("scripts", {}).keys())
|
|
52
|
+
}
|
|
53
|
+
except Exception as e:
|
|
54
|
+
return {"error": str(e)}
|
|
55
|
+
|
|
56
|
+
def count_files(root: Path) -> Dict[str, int]:
|
|
57
|
+
stats = {"created": 0, "modified": 0, "total": 0}
|
|
58
|
+
# Simple count for now, comprehensive tracking would require git diff or extensive history
|
|
59
|
+
exclude = {".git", "node_modules", ".next", "dist", "build", ".agents", ".gemini", "__pycache__"}
|
|
60
|
+
|
|
61
|
+
for root_dir, dirs, files in os.walk(root):
|
|
62
|
+
dirs[:] = [d for d in dirs if d not in exclude]
|
|
63
|
+
stats["total"] += len(files)
|
|
64
|
+
|
|
65
|
+
return stats
|
|
66
|
+
|
|
67
|
+
def detect_features(root: Path) -> List[str]:
|
|
68
|
+
# Heuristic: look at folder names in src/
|
|
69
|
+
features = []
|
|
70
|
+
src = root / "src"
|
|
71
|
+
if src.exists():
|
|
72
|
+
possible_dirs = ["components", "modules", "features", "app", "pages", "services"]
|
|
73
|
+
for d in possible_dirs:
|
|
74
|
+
p = src / d
|
|
75
|
+
if p.exists() and p.is_dir():
|
|
76
|
+
# List subdirectories as likely features
|
|
77
|
+
for child in p.iterdir():
|
|
78
|
+
if child.is_dir():
|
|
79
|
+
features.append(child.name)
|
|
80
|
+
return features[:10] # Limit to top 10
|
|
81
|
+
|
|
82
|
+
def print_status(root: Path):
|
|
83
|
+
info = analyze_package_json(root)
|
|
84
|
+
stats = count_files(root)
|
|
85
|
+
features = detect_features(root)
|
|
86
|
+
|
|
87
|
+
print("\n=== Project Status ===")
|
|
88
|
+
print(f"\n📁 Project: {info.get('name', root.name)}")
|
|
89
|
+
print(f"📂 Path: {root}")
|
|
90
|
+
print(f"🏷️ Type: {', '.join(info.get('stack', ['Generic']))}")
|
|
91
|
+
print(f"📊 Status: Active")
|
|
92
|
+
|
|
93
|
+
print("\n🔧 Tech Stack:")
|
|
94
|
+
for tech in info.get('stack', []):
|
|
95
|
+
print(f" • {tech}")
|
|
96
|
+
|
|
97
|
+
print(f"\n✅ Detected Modules/Features ({len(features)}):")
|
|
98
|
+
for feat in features:
|
|
99
|
+
print(f" • {feat}")
|
|
100
|
+
if not features:
|
|
101
|
+
print(" (No distinct feature modules detected)")
|
|
102
|
+
|
|
103
|
+
print(f"\n📄 Files: {stats['total']} total files tracked")
|
|
104
|
+
print("\n====================\n")
|
|
105
|
+
|
|
106
|
+
def main():
|
|
107
|
+
parser = argparse.ArgumentParser(description="Session Manager")
|
|
108
|
+
parser.add_argument("command", choices=["status", "info"], help="Command to run")
|
|
109
|
+
parser.add_argument("path", nargs="?", default=".", help="Project path")
|
|
110
|
+
|
|
111
|
+
args = parser.parse_args()
|
|
112
|
+
root = get_project_root(args.path)
|
|
113
|
+
|
|
114
|
+
if args.command == "status":
|
|
115
|
+
print_status(root)
|
|
116
|
+
elif args.command == "info":
|
|
117
|
+
print(json.dumps(analyze_package_json(root), indent=2))
|
|
118
|
+
|
|
119
|
+
if __name__ == "__main__":
|
|
120
|
+
main()
|
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
Full Verification Suite - Antigravity Kit
|
|
4
|
+
==========================================
|
|
5
|
+
|
|
6
|
+
Runs COMPLETE validation including all checks + performance + E2E.
|
|
7
|
+
Use this before deployment or major releases.
|
|
8
|
+
|
|
9
|
+
Usage:
|
|
10
|
+
python scripts/verify_all.py . --url <URL>
|
|
11
|
+
|
|
12
|
+
Includes ALL checks:
|
|
13
|
+
✅ Security Scan (OWASP, secrets, dependencies)
|
|
14
|
+
✅ Lint & Type Coverage
|
|
15
|
+
✅ Schema Validation
|
|
16
|
+
✅ Test Suite (unit + integration)
|
|
17
|
+
✅ UX Audit (psychology, accessibility)
|
|
18
|
+
✅ SEO Check
|
|
19
|
+
✅ Lighthouse (Core Web Vitals)
|
|
20
|
+
✅ Playwright E2E
|
|
21
|
+
✅ Bundle Analysis (if applicable)
|
|
22
|
+
✅ Mobile Audit (if applicable)
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
import sys
|
|
26
|
+
import subprocess
|
|
27
|
+
import argparse
|
|
28
|
+
from pathlib import Path
|
|
29
|
+
from typing import List, Dict, Optional
|
|
30
|
+
from datetime import datetime
|
|
31
|
+
|
|
32
|
+
# ANSI colors
|
|
33
|
+
class Colors:
|
|
34
|
+
HEADER = '\033[95m'
|
|
35
|
+
BLUE = '\033[94m'
|
|
36
|
+
CYAN = '\033[96m'
|
|
37
|
+
GREEN = '\033[92m'
|
|
38
|
+
YELLOW = '\033[93m'
|
|
39
|
+
RED = '\033[91m'
|
|
40
|
+
ENDC = '\033[0m'
|
|
41
|
+
BOLD = '\033[1m'
|
|
42
|
+
|
|
43
|
+
def print_header(text: str):
|
|
44
|
+
print(f"\n{Colors.BOLD}{Colors.CYAN}{'='*70}{Colors.ENDC}")
|
|
45
|
+
print(f"{Colors.BOLD}{Colors.CYAN}{text.center(70)}{Colors.ENDC}")
|
|
46
|
+
print(f"{Colors.BOLD}{Colors.CYAN}{'='*70}{Colors.ENDC}\n")
|
|
47
|
+
|
|
48
|
+
def print_step(text: str):
|
|
49
|
+
print(f"{Colors.BOLD}{Colors.BLUE}🔄 {text}{Colors.ENDC}")
|
|
50
|
+
|
|
51
|
+
def print_success(text: str):
|
|
52
|
+
print(f"{Colors.GREEN}✅ {text}{Colors.ENDC}")
|
|
53
|
+
|
|
54
|
+
def print_warning(text: str):
|
|
55
|
+
print(f"{Colors.YELLOW}⚠️ {text}{Colors.ENDC}")
|
|
56
|
+
|
|
57
|
+
def print_error(text: str):
|
|
58
|
+
print(f"{Colors.RED}❌ {text}{Colors.ENDC}")
|
|
59
|
+
|
|
60
|
+
# Complete verification suite
|
|
61
|
+
VERIFICATION_SUITE = [
|
|
62
|
+
# P0: Security (CRITICAL)
|
|
63
|
+
{
|
|
64
|
+
"category": "Security",
|
|
65
|
+
"checks": [
|
|
66
|
+
("Security Scan", ".agents/skills/vulnerability-scanner/scripts/security_scan.py", True),
|
|
67
|
+
("Dependency Analysis", ".agents/skills/vulnerability-scanner/scripts/dependency_analyzer.py", False),
|
|
68
|
+
]
|
|
69
|
+
},
|
|
70
|
+
|
|
71
|
+
# P1: Code Quality (CRITICAL)
|
|
72
|
+
{
|
|
73
|
+
"category": "Code Quality",
|
|
74
|
+
"checks": [
|
|
75
|
+
("Lint Check", ".agents/skills/lint-and-validate/scripts/lint_runner.py", True),
|
|
76
|
+
("Type Coverage", ".agents/skills/lint-and-validate/scripts/type_coverage.py", False),
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
|
|
80
|
+
# P2: Data Layer
|
|
81
|
+
{
|
|
82
|
+
"category": "Data Layer",
|
|
83
|
+
"checks": [
|
|
84
|
+
("Schema Validation", ".agents/skills/database-design/scripts/schema_validator.py", False),
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
|
|
88
|
+
# P3: Testing
|
|
89
|
+
{
|
|
90
|
+
"category": "Testing",
|
|
91
|
+
"checks": [
|
|
92
|
+
("Test Suite", ".agents/skills/testing-patterns/scripts/test_runner.py", False),
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
|
|
96
|
+
# P4: UX & Accessibility
|
|
97
|
+
{
|
|
98
|
+
"category": "UX & Accessibility",
|
|
99
|
+
"checks": [
|
|
100
|
+
("UX Audit", ".agents/skills/frontend-design/scripts/ux_audit.py", False),
|
|
101
|
+
("Accessibility Check", ".agents/skills/frontend-design/scripts/accessibility_checker.py", False),
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
|
|
105
|
+
# P5: SEO & Content
|
|
106
|
+
{
|
|
107
|
+
"category": "SEO & Content",
|
|
108
|
+
"checks": [
|
|
109
|
+
("SEO Check", ".agents/skills/seo-fundamentals/scripts/seo_checker.py", False),
|
|
110
|
+
("GEO Check", ".agents/skills/geo-fundamentals/scripts/geo_checker.py", False),
|
|
111
|
+
]
|
|
112
|
+
},
|
|
113
|
+
|
|
114
|
+
# P6: Performance (requires URL)
|
|
115
|
+
{
|
|
116
|
+
"category": "Performance",
|
|
117
|
+
"requires_url": True,
|
|
118
|
+
"checks": [
|
|
119
|
+
("Lighthouse Audit", ".agents/skills/performance-profiling/scripts/lighthouse_audit.py", True),
|
|
120
|
+
("Bundle Analysis", ".agents/skills/performance-profiling/scripts/bundle_analyzer.py", False),
|
|
121
|
+
]
|
|
122
|
+
},
|
|
123
|
+
|
|
124
|
+
# P7: E2E Testing (requires URL)
|
|
125
|
+
{
|
|
126
|
+
"category": "E2E Testing",
|
|
127
|
+
"requires_url": True,
|
|
128
|
+
"checks": [
|
|
129
|
+
("Playwright E2E", ".agents/skills/webapp-testing/scripts/playwright_runner.py", False),
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
|
|
133
|
+
# P8: Mobile (if applicable)
|
|
134
|
+
{
|
|
135
|
+
"category": "Mobile",
|
|
136
|
+
"checks": [
|
|
137
|
+
("Mobile Audit", ".agents/skills/mobile-design/scripts/mobile_audit.py", False),
|
|
138
|
+
]
|
|
139
|
+
},
|
|
140
|
+
|
|
141
|
+
# P9: Internationalization
|
|
142
|
+
{
|
|
143
|
+
"category": "Internationalization",
|
|
144
|
+
"checks": [
|
|
145
|
+
("i18n Check", ".agents/skills/i18n-localization/scripts/i18n_checker.py", False),
|
|
146
|
+
]
|
|
147
|
+
},
|
|
148
|
+
]
|
|
149
|
+
|
|
150
|
+
def run_script(name: str, script_path: Path, project_path: str, url: Optional[str] = None) -> dict:
|
|
151
|
+
"""Run validation script"""
|
|
152
|
+
if not script_path.exists():
|
|
153
|
+
print_warning(f"{name}: Script not found, skipping")
|
|
154
|
+
return {"name": name, "passed": True, "skipped": True, "duration": 0}
|
|
155
|
+
|
|
156
|
+
print_step(f"Running: {name}")
|
|
157
|
+
start_time = datetime.now()
|
|
158
|
+
|
|
159
|
+
# Build command
|
|
160
|
+
cmd = ["python", str(script_path), project_path]
|
|
161
|
+
if url and ("lighthouse" in script_path.name.lower() or "playwright" in script_path.name.lower()):
|
|
162
|
+
cmd.append(url)
|
|
163
|
+
|
|
164
|
+
# Run
|
|
165
|
+
try:
|
|
166
|
+
result = subprocess.run(
|
|
167
|
+
cmd,
|
|
168
|
+
capture_output=True,
|
|
169
|
+
text=True,
|
|
170
|
+
timeout=600 # 10 minute timeout for slow checks
|
|
171
|
+
)
|
|
172
|
+
|
|
173
|
+
duration = (datetime.now() - start_time).total_seconds()
|
|
174
|
+
passed = result.returncode == 0
|
|
175
|
+
|
|
176
|
+
if passed:
|
|
177
|
+
print_success(f"{name}: PASSED ({duration:.1f}s)")
|
|
178
|
+
else:
|
|
179
|
+
print_error(f"{name}: FAILED ({duration:.1f}s)")
|
|
180
|
+
if result.stderr:
|
|
181
|
+
print(f" {result.stderr[:300]}")
|
|
182
|
+
|
|
183
|
+
return {
|
|
184
|
+
"name": name,
|
|
185
|
+
"passed": passed,
|
|
186
|
+
"output": result.stdout,
|
|
187
|
+
"error": result.stderr,
|
|
188
|
+
"skipped": False,
|
|
189
|
+
"duration": duration
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
except subprocess.TimeoutExpired:
|
|
193
|
+
duration = (datetime.now() - start_time).total_seconds()
|
|
194
|
+
print_error(f"{name}: TIMEOUT (>{duration:.0f}s)")
|
|
195
|
+
return {"name": name, "passed": False, "skipped": False, "duration": duration, "error": "Timeout"}
|
|
196
|
+
|
|
197
|
+
except Exception as e:
|
|
198
|
+
duration = (datetime.now() - start_time).total_seconds()
|
|
199
|
+
print_error(f"{name}: ERROR - {str(e)}")
|
|
200
|
+
return {"name": name, "passed": False, "skipped": False, "duration": duration, "error": str(e)}
|
|
201
|
+
|
|
202
|
+
def print_final_report(results: List[dict], start_time: datetime):
|
|
203
|
+
"""Print comprehensive final report"""
|
|
204
|
+
total_duration = (datetime.now() - start_time).total_seconds()
|
|
205
|
+
|
|
206
|
+
print_header("📊 FULL VERIFICATION REPORT")
|
|
207
|
+
|
|
208
|
+
# Statistics
|
|
209
|
+
total = len(results)
|
|
210
|
+
passed = sum(1 for r in results if r["passed"] and not r.get("skipped"))
|
|
211
|
+
failed = sum(1 for r in results if not r["passed"] and not r.get("skipped"))
|
|
212
|
+
skipped = sum(1 for r in results if r.get("skipped"))
|
|
213
|
+
|
|
214
|
+
print(f"Total Duration: {total_duration:.1f}s")
|
|
215
|
+
print(f"Total Checks: {total}")
|
|
216
|
+
print(f"{Colors.GREEN}✅ Passed: {passed}{Colors.ENDC}")
|
|
217
|
+
print(f"{Colors.RED}❌ Failed: {failed}{Colors.ENDC}")
|
|
218
|
+
print(f"{Colors.YELLOW}⏭️ Skipped: {skipped}{Colors.ENDC}")
|
|
219
|
+
print()
|
|
220
|
+
|
|
221
|
+
# Category breakdown
|
|
222
|
+
print(f"{Colors.BOLD}Results by Category:{Colors.ENDC}")
|
|
223
|
+
current_category = None
|
|
224
|
+
for r in results:
|
|
225
|
+
# Print category header if changed
|
|
226
|
+
if r.get("category") and r["category"] != current_category:
|
|
227
|
+
current_category = r["category"]
|
|
228
|
+
print(f"\n{Colors.BOLD}{Colors.CYAN}{current_category}:{Colors.ENDC}")
|
|
229
|
+
|
|
230
|
+
# Print result
|
|
231
|
+
if r.get("skipped"):
|
|
232
|
+
status = f"{Colors.YELLOW}⏭️ {Colors.ENDC}"
|
|
233
|
+
elif r["passed"]:
|
|
234
|
+
status = f"{Colors.GREEN}✅{Colors.ENDC}"
|
|
235
|
+
else:
|
|
236
|
+
status = f"{Colors.RED}❌{Colors.ENDC}"
|
|
237
|
+
|
|
238
|
+
duration_str = f"({r.get('duration', 0):.1f}s)" if not r.get("skipped") else ""
|
|
239
|
+
print(f" {status} {r['name']} {duration_str}")
|
|
240
|
+
|
|
241
|
+
print()
|
|
242
|
+
|
|
243
|
+
# Failed checks detail
|
|
244
|
+
if failed > 0:
|
|
245
|
+
print(f"{Colors.BOLD}{Colors.RED}❌ FAILED CHECKS:{Colors.ENDC}")
|
|
246
|
+
for r in results:
|
|
247
|
+
if not r["passed"] and not r.get("skipped"):
|
|
248
|
+
print(f"\n{Colors.RED}✗ {r['name']}{Colors.ENDC}")
|
|
249
|
+
if r.get("error"):
|
|
250
|
+
error_preview = r["error"][:200]
|
|
251
|
+
print(f" Error: {error_preview}")
|
|
252
|
+
print()
|
|
253
|
+
|
|
254
|
+
# Final verdict
|
|
255
|
+
if failed > 0:
|
|
256
|
+
print_error(f"VERIFICATION FAILED - {failed} check(s) need attention")
|
|
257
|
+
print(f"\n{Colors.YELLOW}💡 Tip: Fix critical (security, lint) issues first{Colors.ENDC}")
|
|
258
|
+
return False
|
|
259
|
+
else:
|
|
260
|
+
print_success("✨ ALL CHECKS PASSED - Ready for deployment! ✨")
|
|
261
|
+
return True
|
|
262
|
+
|
|
263
|
+
def main():
|
|
264
|
+
parser = argparse.ArgumentParser(
|
|
265
|
+
description="Run complete Antigravity Kit verification suite",
|
|
266
|
+
formatter_class=argparse.RawDescriptionHelpFormatter,
|
|
267
|
+
epilog="""
|
|
268
|
+
Examples:
|
|
269
|
+
python scripts/verify_all.py . --url http://localhost:3000
|
|
270
|
+
python scripts/verify_all.py . --url https://staging.example.com --no-e2e
|
|
271
|
+
"""
|
|
272
|
+
)
|
|
273
|
+
parser.add_argument("project", help="Project path to validate")
|
|
274
|
+
parser.add_argument("--url", required=True, help="URL for performance & E2E checks")
|
|
275
|
+
parser.add_argument("--no-e2e", action="store_true", help="Skip E2E tests")
|
|
276
|
+
parser.add_argument("--stop-on-fail", action="store_true", help="Stop on first failure")
|
|
277
|
+
|
|
278
|
+
args = parser.parse_args()
|
|
279
|
+
|
|
280
|
+
project_path = Path(args.project).resolve()
|
|
281
|
+
|
|
282
|
+
if not project_path.exists():
|
|
283
|
+
print_error(f"Project path does not exist: {project_path}")
|
|
284
|
+
sys.exit(1)
|
|
285
|
+
|
|
286
|
+
print_header("🚀 ANTIGRAVITY KIT - FULL VERIFICATION SUITE")
|
|
287
|
+
print(f"Project: {project_path}")
|
|
288
|
+
print(f"URL: {args.url}")
|
|
289
|
+
print(f"Started: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}")
|
|
290
|
+
|
|
291
|
+
start_time = datetime.now()
|
|
292
|
+
results = []
|
|
293
|
+
|
|
294
|
+
# Run all verification categories
|
|
295
|
+
for suite in VERIFICATION_SUITE:
|
|
296
|
+
category = suite["category"]
|
|
297
|
+
requires_url = suite.get("requires_url", False)
|
|
298
|
+
|
|
299
|
+
# Skip if requires URL and not provided
|
|
300
|
+
if requires_url and not args.url:
|
|
301
|
+
continue
|
|
302
|
+
|
|
303
|
+
# Skip E2E if flag set
|
|
304
|
+
if args.no_e2e and category == "E2E Testing":
|
|
305
|
+
continue
|
|
306
|
+
|
|
307
|
+
print_header(f"📋 {category.upper()}")
|
|
308
|
+
|
|
309
|
+
for name, script_path, required in suite["checks"]:
|
|
310
|
+
script = project_path / script_path
|
|
311
|
+
result = run_script(name, script, str(project_path), args.url)
|
|
312
|
+
result["category"] = category
|
|
313
|
+
results.append(result)
|
|
314
|
+
|
|
315
|
+
# Stop on critical failure if flag set
|
|
316
|
+
if args.stop_on_fail and required and not result["passed"] and not result.get("skipped"):
|
|
317
|
+
print_error(f"CRITICAL: {name} failed. Stopping verification.")
|
|
318
|
+
print_final_report(results, start_time)
|
|
319
|
+
sys.exit(1)
|
|
320
|
+
|
|
321
|
+
# Print final report
|
|
322
|
+
all_passed = print_final_report(results, start_time)
|
|
323
|
+
|
|
324
|
+
sys.exit(0 if all_passed else 1)
|
|
325
|
+
|
|
326
|
+
if __name__ == "__main__":
|
|
327
|
+
main()
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Structured brainstorming for projects and features. Explores multiple options before implementation.
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# /brainstorm - Structured Idea Exploration
|
|
6
|
+
|
|
7
|
+
$ARGUMENTS
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Purpose
|
|
12
|
+
|
|
13
|
+
This command activates BRAINSTORM mode for structured idea exploration. Use when you need to explore options before committing to an implementation.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Behavior
|
|
18
|
+
|
|
19
|
+
When `/brainstorm` is triggered:
|
|
20
|
+
|
|
21
|
+
1. **Understand the goal**
|
|
22
|
+
- What problem are we solving?
|
|
23
|
+
- Who is the user?
|
|
24
|
+
- What constraints exist?
|
|
25
|
+
|
|
26
|
+
2. **Generate options**
|
|
27
|
+
- Provide at least 3 different approaches
|
|
28
|
+
- Each with pros and cons
|
|
29
|
+
- Consider unconventional solutions
|
|
30
|
+
|
|
31
|
+
3. **Compare and recommend**
|
|
32
|
+
- Summarize tradeoffs
|
|
33
|
+
- Give a recommendation with reasoning
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## Output Format
|
|
38
|
+
|
|
39
|
+
```markdown
|
|
40
|
+
## 🧠 Brainstorm: [Topic]
|
|
41
|
+
|
|
42
|
+
### Context
|
|
43
|
+
[Brief problem statement]
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
### Option A: [Name]
|
|
48
|
+
[Description]
|
|
49
|
+
|
|
50
|
+
✅ **Pros:**
|
|
51
|
+
- [benefit 1]
|
|
52
|
+
- [benefit 2]
|
|
53
|
+
|
|
54
|
+
❌ **Cons:**
|
|
55
|
+
- [drawback 1]
|
|
56
|
+
|
|
57
|
+
📊 **Effort:** Low | Medium | High
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
### Option B: [Name]
|
|
62
|
+
[Description]
|
|
63
|
+
|
|
64
|
+
✅ **Pros:**
|
|
65
|
+
- [benefit 1]
|
|
66
|
+
|
|
67
|
+
❌ **Cons:**
|
|
68
|
+
- [drawback 1]
|
|
69
|
+
- [drawback 2]
|
|
70
|
+
|
|
71
|
+
📊 **Effort:** Low | Medium | High
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
### Option C: [Name]
|
|
76
|
+
[Description]
|
|
77
|
+
|
|
78
|
+
✅ **Pros:**
|
|
79
|
+
- [benefit 1]
|
|
80
|
+
|
|
81
|
+
❌ **Cons:**
|
|
82
|
+
- [drawback 1]
|
|
83
|
+
|
|
84
|
+
📊 **Effort:** Low | Medium | High
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
## 💡 Recommendation
|
|
89
|
+
|
|
90
|
+
**Option [X]** because [reasoning].
|
|
91
|
+
|
|
92
|
+
What direction would you like to explore?
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
## Examples
|
|
98
|
+
|
|
99
|
+
```
|
|
100
|
+
/brainstorm authentication system
|
|
101
|
+
/brainstorm state management for complex form
|
|
102
|
+
/brainstorm database schema for social app
|
|
103
|
+
/brainstorm caching strategy
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## Key Principles
|
|
109
|
+
|
|
110
|
+
- **No code** - this is about ideas, not implementation
|
|
111
|
+
- **Visual when helpful** - use diagrams for architecture
|
|
112
|
+
- **Honest tradeoffs** - don't hide complexity
|
|
113
|
+
- **Defer to user** - present options, let them decide
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Create new application command. Triggers App Builder skill and starts interactive dialogue with user.
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# /create - Create Application
|
|
6
|
+
|
|
7
|
+
$ARGUMENTS
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Task
|
|
12
|
+
|
|
13
|
+
This command starts a new application creation process.
|
|
14
|
+
|
|
15
|
+
### Steps:
|
|
16
|
+
|
|
17
|
+
1. **Request Analysis**
|
|
18
|
+
- Understand what the user wants
|
|
19
|
+
- If information is missing, use `conversation-manager` skill to ask
|
|
20
|
+
|
|
21
|
+
2. **Project Planning**
|
|
22
|
+
- Use `project-planner` agent for task breakdown
|
|
23
|
+
- Determine tech stack
|
|
24
|
+
- Plan file structure
|
|
25
|
+
- Create plan file and proceed to building
|
|
26
|
+
|
|
27
|
+
3. **Application Building (After Approval)**
|
|
28
|
+
- Orchestrate with `app-builder` skill
|
|
29
|
+
- Coordinate expert agents:
|
|
30
|
+
- `database-architect` → Schema
|
|
31
|
+
- `backend-specialist` → API
|
|
32
|
+
- `frontend-specialist` → UI
|
|
33
|
+
|
|
34
|
+
4. **Preview**
|
|
35
|
+
- Start with `auto_preview.py` when complete
|
|
36
|
+
- Present URL to user
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## Usage Examples
|
|
41
|
+
|
|
42
|
+
```
|
|
43
|
+
/create blog site
|
|
44
|
+
/create e-commerce app with product listing and cart
|
|
45
|
+
/create todo app
|
|
46
|
+
/create Instagram clone
|
|
47
|
+
/create crm system with customer management
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## Before Starting
|
|
53
|
+
|
|
54
|
+
If request is unclear, ask these questions:
|
|
55
|
+
- What type of application?
|
|
56
|
+
- What are the basic features?
|
|
57
|
+
- Who will use it?
|
|
58
|
+
|
|
59
|
+
Use defaults, add details later.
|