haraps 1.0.0 β 1.0.2
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/bin/index.js +9 -3
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -248,6 +248,12 @@ 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.
|
|
251
257
|
`);
|
|
252
258
|
|
|
253
259
|
// 4. Workflows
|
|
@@ -367,6 +373,6 @@ try {
|
|
|
367
373
|
}
|
|
368
374
|
|
|
369
375
|
console.log('');
|
|
370
|
-
console.log(
|
|
371
|
-
console.log(
|
|
372
|
-
console.log(
|
|
376
|
+
console.log("\nπ Scaffolding Complete! π");
|
|
377
|
+
console.log("π The workspace is fully loaded with Ponytail, Security Review, and Kill AI Slop skills.");
|
|
378
|
+
console.log("π Go to your coding agent and say: 'start project' to begin! π");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "haraps",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
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": {
|