haraps 1.0.5 → 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/SKILL.md +9 -1
- package/bin/index.js +1381 -756
- package/deploy.ps1 +414 -0
- package/deploy.sh +10 -0
- package/dev.ps1 +409 -0
- package/dev.sh +359 -0
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -32,6 +32,14 @@ Verify that the following files were successfully created in the root directory:
|
|
|
32
32
|
- `.agents/skills/kill-ai-slop/SKILL.md`
|
|
33
33
|
- `.agents/skills/security-review/SKILL.md`
|
|
34
34
|
|
|
35
|
-
### Step 3:
|
|
35
|
+
### Step 3: Project Skeleton Initialization (First Run)
|
|
36
|
+
|
|
37
|
+
It is your strict responsibility as the agent to carefully initialize the standard project skeleton if this is the first run (i.e. if the project is empty). You must:
|
|
38
|
+
1. Generate the Next.js frontend and Rust Cloudflare Worker backend in their respective directories (`frontend/` and `backend/`).
|
|
39
|
+
2. Carefully modify the generated files to align with the project guidelines.
|
|
40
|
+
3. **CRITICAL: Dev and Deploy Scripts**: The generated `dev.ps1`, `dev.sh`, `deploy.ps1`, and `deploy.sh` files are highly optimized custom runners (with clipboard integration, aggressive process cleanup, and error reporting). **Never** overwrite them with generic start/build scripts. If modifications are needed, surgically edit them to preserve their robust functionality.
|
|
41
|
+
4. Initialize the Git repository (`git init`) and create the initial commit.
|
|
42
|
+
|
|
43
|
+
### Step 4: Inform the User
|
|
36
44
|
|
|
37
45
|
Notify the user that the project has been successfully scaffolded and all the lazy senior dev standards, security reviews, UI sniper setups, and AI slop removers are in place. Remind them to use `./dev.ps1` or `./dev.sh` once their `frontend/` and `backend/` directories are initialized.
|