@launchsecure/launch-kit 0.0.1

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 (64) hide show
  1. package/README.md +37 -0
  2. package/dist/client/assets/index-C8GAsRGO.css +32 -0
  3. package/dist/client/assets/index-CcHIoRl6.js +286 -0
  4. package/dist/client/index.html +22 -0
  5. package/dist/server/cli.js +8853 -0
  6. package/dist/server/fb-wizard.js +136 -0
  7. package/dist/server/graph-mcp-entry.js +1542 -0
  8. package/dist/server/public/app.js +1312 -0
  9. package/dist/server/public/icons.js +36 -0
  10. package/dist/server/public/index.html +159 -0
  11. package/dist/server/public/plan-detector.js +186 -0
  12. package/dist/server/public/session-manager.js +1129 -0
  13. package/dist/server/public/splits.js +569 -0
  14. package/dist/server/public/style.css +1620 -0
  15. package/package.json +73 -0
  16. package/prompts/analysis.md +992 -0
  17. package/prompts/architect-reconcile.md +931 -0
  18. package/prompts/architecture-sync.md +902 -0
  19. package/prompts/be-contract.md +709 -0
  20. package/prompts/be-impl.md +565 -0
  21. package/prompts/be-policy.md +551 -0
  22. package/prompts/be-test.md +591 -0
  23. package/prompts/bug-diagnosis.md +653 -0
  24. package/prompts/bug-intake.md +563 -0
  25. package/prompts/change-request-intake.md +593 -0
  26. package/prompts/db-contract.md +644 -0
  27. package/prompts/db-impl.md +522 -0
  28. package/prompts/db-interaction.md +569 -0
  29. package/prompts/db-test.md +630 -0
  30. package/prompts/decision-pack.md +654 -0
  31. package/prompts/fe-contract.md +992 -0
  32. package/prompts/fe-flow.md +537 -0
  33. package/prompts/fe-impl.md +597 -0
  34. package/prompts/fe-reconcile.md +506 -0
  35. package/prompts/fe-review.md +550 -0
  36. package/prompts/fe-test.md +705 -0
  37. package/prompts/fix-planner.md +1219 -0
  38. package/prompts/global-db-patterns.md +588 -0
  39. package/prompts/global-env-config.md +460 -0
  40. package/prompts/global-integrations.md +504 -0
  41. package/prompts/global-middleware.md +442 -0
  42. package/prompts/global-navigation.md +502 -0
  43. package/prompts/global-security.md +603 -0
  44. package/prompts/global-services.md +427 -0
  45. package/prompts/greenfield-classifier.md +590 -0
  46. package/prompts/llm-council.md +597 -0
  47. package/prompts/module-sequencer.md +529 -0
  48. package/prompts/normalize.md +611 -0
  49. package/prompts/optimization.md +633 -0
  50. package/prompts/prd-generation.md +544 -0
  51. package/prompts/prd-reconcile.md +584 -0
  52. package/prompts/prd-review.md +504 -0
  53. package/prompts/pre-code-analysis.md +565 -0
  54. package/prompts/pre-code-global-analysis.md +169 -0
  55. package/prompts/production-bootstrap.md +577 -0
  56. package/prompts/research.md +702 -0
  57. package/prompts/retrofit-analysis.md +845 -0
  58. package/prompts/spike.md +850 -0
  59. package/prompts/theming.md +835 -0
  60. package/prompts/triage.md +599 -0
  61. package/prompts/unified-reconcile.md +628 -0
  62. package/prompts/unified-review.md +592 -0
  63. package/prompts/user-stories.md +486 -0
  64. package/prompts/wireframe.md +576 -0
package/package.json ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "@launchsecure/launch-kit",
3
+ "version": "0.0.1",
4
+ "description": "LaunchSecure toolkit — launch-pod (pipeline pod), launch-chart (project graph MCP), and more.",
5
+ "license": "MIT",
6
+ "author": "LaunchSecure - AutomateWithUs",
7
+ "homepage": "https://automatewith.us",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/launchsecure/launchsecure-v2",
11
+ "directory": "packages/cli"
12
+ },
13
+ "keywords": [
14
+ "launchsecure",
15
+ "launch-kit",
16
+ "launch-chart",
17
+ "launch-pod",
18
+ "project-graph",
19
+ "mcp",
20
+ "pipeline",
21
+ "ai",
22
+ "cli"
23
+ ],
24
+ "engines": {
25
+ "node": ">=18.0.0"
26
+ },
27
+ "publishConfig": {
28
+ "access": "public"
29
+ },
30
+ "bin": {
31
+ "launch-pod": "./dist/server/cli.js",
32
+ "launch-chart": "./dist/server/graph-mcp-entry.js"
33
+ },
34
+ "scripts": {
35
+ "build": "npm run build:client && npm run build:server",
36
+ "build:client": "vite build",
37
+ "build:server": "esbuild src/server/cli.ts src/server/fb-wizard.ts src/server/graph-mcp-entry.ts --bundle --platform=node --target=node18 --outdir=dist/server --external:node-pty --external:ws --external:typescript && rm -rf dist/server/public && cp -r ../claude-code-web/src/public dist/server/public",
38
+ "dev:client": "vite",
39
+ "dev:server": "npm run build:server && node dist/server/cli.js",
40
+ "dev": "npm run build:server && concurrently -k -n client,server -c cyan,magenta \"vite\" \"node dist/server/cli.js\"",
41
+ "prepublishOnly": "npm run build:server"
42
+ },
43
+ "files": [
44
+ "dist",
45
+ "prompts"
46
+ ],
47
+ "dependencies": {
48
+ "node-pty": "^1.2.0-beta.12",
49
+ "typescript": "^5.5.0",
50
+ "ws": "^8.18.0"
51
+ },
52
+ "devDependencies": {
53
+ "@launchsecure/claude-code-web": "*",
54
+ "@launchsecure/ui": "*",
55
+ "@types/node": "^20.0.0",
56
+ "@types/react": "^18.3.12",
57
+ "@types/react-dom": "^18.3.1",
58
+ "@types/ws": "^8.5.10",
59
+ "@vitejs/plugin-react": "^4.3.4",
60
+ "@xterm/addon-fit": "^0.10.0",
61
+ "@xterm/addon-web-links": "^0.11.0",
62
+ "@xterm/xterm": "^5.5.0",
63
+ "autoprefixer": "^10.4.27",
64
+ "concurrently": "^9.2.1",
65
+ "esbuild": "^0.28.0",
66
+ "postcss": "^8.5.8",
67
+ "react": "^18.3.1",
68
+ "react-dom": "^18.3.1",
69
+ "react-router-dom": "^6.28.0",
70
+ "tailwindcss": "^3.4.19",
71
+ "vite": "^5.4.11"
72
+ }
73
+ }