packwise-skills 1.0.0 → 1.2.0
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/.cursorrules +23 -23
- package/CLAUDE.md +25 -25
- package/LICENSE +21 -0
- package/README.md +404 -295
- package/audit.md +224 -224
- package/bin/packwise.js +322 -155
- package/install.sh +123 -0
- package/package.json +32 -31
- package/skill.md +944 -719
- package/sub-skills/ai/local-llm.md +183 -183
- package/sub-skills/ai/python-ml.md +164 -164
- package/sub-skills/backend/go-server.md +184 -184
- package/sub-skills/backend/java-spring.md +241 -241
- package/sub-skills/backend/node-server.md +164 -164
- package/sub-skills/backend/php-laravel.md +175 -175
- package/sub-skills/backend/python-server.md +164 -164
- package/sub-skills/backend/rust-backend.md +118 -118
- package/sub-skills/cli/python-cli.md +236 -236
- package/sub-skills/cli/sdk-library.md +497 -497
- package/sub-skills/cloud/ci-cd-pipelines.md +350 -350
- package/sub-skills/cloud/docker.md +191 -191
- package/sub-skills/cloud/kubernetes.md +277 -277
- package/sub-skills/cloud/payment-integration.md +307 -307
- package/sub-skills/cross-platform/multiplatform.md +252 -252
- package/sub-skills/desktop/electron.md +783 -783
- package/sub-skills/desktop/game-dev.md +443 -443
- package/sub-skills/desktop/native-app.md +123 -123
- package/sub-skills/desktop/scenarios.md +443 -443
- package/sub-skills/desktop/smart-platforms.md +324 -324
- package/sub-skills/desktop/tauri.md +428 -428
- package/sub-skills/desktop/vr-ar.md +252 -252
- package/sub-skills/desktop/web-to-desktop.md +153 -153
- package/sub-skills/embedded/car-infotainment.md +129 -129
- package/sub-skills/embedded/esp32.md +184 -184
- package/sub-skills/embedded/ros.md +150 -150
- package/sub-skills/embedded/stm32.md +160 -160
- package/sub-skills/mobile/android.md +322 -322
- package/sub-skills/mobile/capacitor.md +232 -232
- package/sub-skills/mobile/flutter-mobile.md +138 -138
- package/sub-skills/mobile/harmonyos.md +150 -150
- package/sub-skills/mobile/ios.md +245 -245
- package/sub-skills/mobile/react-native.md +443 -443
- package/sub-skills/mobile/wearables.md +230 -230
- package/sub-skills/plugins/browser-extension.md +308 -308
- package/sub-skills/plugins/jetbrains-plugin.md +226 -226
- package/sub-skills/plugins/vscode-extension.md +204 -204
- package/sub-skills/security/security-tools.md +174 -174
- package/sub-skills/web/monorepo.md +274 -274
- package/sub-skills/web/pwa.md +220 -220
- package/sub-skills/web/serverless-edge.md +295 -295
- package/sub-skills/web/spa.md +266 -266
- package/sub-skills/web/ssr.md +228 -228
- package/sub-skills/web/wasm.md +243 -243
package/.cursorrules
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
# Packwise — Build & Packaging Skill
|
|
2
|
-
|
|
3
|
-
## Context
|
|
4
|
-
|
|
5
|
-
This project contains a universal build & packaging skill set for AI-assisted development. When asked to build, package, distribute, or ship software, follow the workflow in `skill.md`.
|
|
6
|
-
|
|
7
|
-
## Instructions
|
|
8
|
-
|
|
9
|
-
1. Read `skill.md` — it contains the complete
|
|
10
|
-
2. Scan the user's project first (framework, language, dependencies)
|
|
11
|
-
3. Ask the user key questions (platform, architecture, signing, protection)
|
|
12
|
-
4. Recommend the BEST approach with reasoning + alternatives
|
|
13
|
-
5. Execute only after user confirms
|
|
14
|
-
6. Always run the mandatory security audit after build
|
|
15
|
-
7. Output results to `./release/` unless user specifies otherwise
|
|
16
|
-
|
|
17
|
-
## Constraints
|
|
18
|
-
|
|
19
|
-
- Never assume — always ask
|
|
20
|
-
- Recommend with clear reasoning
|
|
21
|
-
- Security checks are mandatory (credentials, .env, source maps)
|
|
22
|
-
- If unsure about a platform, check `sub-skills/` for the matching guide
|
|
23
|
-
- If no sub-skill matches, research online (time-boxed to 2-3 min)
|
|
1
|
+
# Packwise — Build & Packaging Skill
|
|
2
|
+
|
|
3
|
+
## Context
|
|
4
|
+
|
|
5
|
+
This project contains a universal build & packaging skill set for AI-assisted development. When asked to build, package, distribute, or ship software, follow the workflow in `skill.md`.
|
|
6
|
+
|
|
7
|
+
## Instructions
|
|
8
|
+
|
|
9
|
+
1. Read `skill.md` — it contains the complete 9-step workflow
|
|
10
|
+
2. Scan the user's project first (framework, language, dependencies)
|
|
11
|
+
3. Ask the user key questions (platform, architecture, signing, protection)
|
|
12
|
+
4. Recommend the BEST approach with reasoning + alternatives
|
|
13
|
+
5. Execute only after user confirms
|
|
14
|
+
6. Always run the mandatory security audit after build
|
|
15
|
+
7. Output results to `./release/` unless user specifies otherwise
|
|
16
|
+
|
|
17
|
+
## Constraints
|
|
18
|
+
|
|
19
|
+
- Never assume — always ask
|
|
20
|
+
- Recommend with clear reasoning
|
|
21
|
+
- Security checks are mandatory (credentials, .env, source maps)
|
|
22
|
+
- If unsure about a platform, check `sub-skills/` for the matching guide
|
|
23
|
+
- If no sub-skill matches, research online (time-boxed to 2-3 min)
|
package/CLAUDE.md
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
# Claude Code — Packwise Skill
|
|
2
|
-
|
|
3
|
-
## How to use this skill
|
|
4
|
-
|
|
5
|
-
When the user asks to **build, package, distribute, or ship** any software project:
|
|
6
|
-
|
|
7
|
-
1. Read `skill.md` for the complete
|
|
8
|
-
2. Follow the workflow exactly — do not skip steps
|
|
9
|
-
3. After building, always run the mandatory security audit
|
|
10
|
-
|
|
11
|
-
## Trigger phrases
|
|
12
|
-
|
|
13
|
-
- "package my app"
|
|
14
|
-
- "build for Windows/macOS/Linux"
|
|
15
|
-
- "create an installer"
|
|
16
|
-
- "ship this project"
|
|
17
|
-
- "distribute my app"
|
|
18
|
-
- "bundle for production"
|
|
19
|
-
|
|
20
|
-
## Key rules
|
|
21
|
-
|
|
22
|
-
- **Ask questions first** — never assume platform, architecture, or encryption needs
|
|
23
|
-
- **Recommend with reasoning** — explain WHY, not just WHAT
|
|
24
|
-
- **Security is mandatory** — always check for .env files, credentials, source maps
|
|
25
|
-
- **Confirm before executing** — never build without user approval
|
|
1
|
+
# Claude Code — Packwise Skill
|
|
2
|
+
|
|
3
|
+
## How to use this skill
|
|
4
|
+
|
|
5
|
+
When the user asks to **build, package, distribute, or ship** any software project:
|
|
6
|
+
|
|
7
|
+
1. Read `skill.md` for the complete 9-step workflow
|
|
8
|
+
2. Follow the workflow exactly — do not skip steps
|
|
9
|
+
3. After building, always run the mandatory security audit
|
|
10
|
+
|
|
11
|
+
## Trigger phrases
|
|
12
|
+
|
|
13
|
+
- "package my app"
|
|
14
|
+
- "build for Windows/macOS/Linux"
|
|
15
|
+
- "create an installer"
|
|
16
|
+
- "ship this project"
|
|
17
|
+
- "distribute my app"
|
|
18
|
+
- "bundle for production"
|
|
19
|
+
|
|
20
|
+
## Key rules
|
|
21
|
+
|
|
22
|
+
- **Ask questions first** — never assume platform, architecture, or encryption needs
|
|
23
|
+
- **Recommend with reasoning** — explain WHY, not just WHAT
|
|
24
|
+
- **Security is mandatory** — always check for .env files, credentials, source maps
|
|
25
|
+
- **Confirm before executing** — never build without user approval
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Thomas520TOM
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|