haraps 1.0.1 → 1.0.3

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 (2) hide show
  1. package/bin/index.js +7 -0
  2. package/package.json +1 -1
package/bin/index.js CHANGED
@@ -248,6 +248,13 @@ writeFile('AGENTS.md', `
248
248
  18. **Environment Variable Validation**: Fail fast at startup if required \`.env\` variables are missing.
249
249
  19. **Kill AI Slop**: Remove aesthetic clichés (indigo gradients, glowing cards, excessive emojis) that serve no functional purpose.
250
250
  20. **Security First Principle**: Treat all external input as malicious; leverage the Security Review skill for all external-facing endpoints.
251
+
252
+ # Start Project Protocol
253
+ When the user says "start project", you MUST immediately:
254
+ 1. Ask the user for the name of the project and a brief description of what they want to build.
255
+ 2. Wait for their response.
256
+ 3. Once they respond, use their details to initialize the Next.js frontend (in \`frontend/\`) and Rust backend (in \`backend/\`), adhering to all High-Performance Engineering Standards.
257
+ 4. Initialize a new git repository in the root directory (\`git init\`) and create an initial commit.
251
258
  `);
252
259
 
253
260
  // 4. Workflows
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "haraps",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "NPM package to scaffold standard development environment, deployment scripts, AGENTS.md guidelines, and core workflows for a Next.js frontend + Rust Cloudflare Worker backend.",
5
5
  "main": "bin/index.js",
6
6
  "bin": {