zaileys 4.0.0 → 4.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 (2) hide show
  1. package/README.md +14 -6
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -79,21 +79,29 @@ const client = new Client({ authType: 'pairing', phoneNumber: '6281234567890' })
79
79
 
80
80
  ## Build with AI
81
81
 
82
- Zaileys ships an **official Agent Skill** so your AI assistant writes, reviews, and debugs
83
- zaileys code with best practices — it knows the exact API, common pitfalls, and how to fix
84
- errors. Install it straight from this repo:
82
+ Zaileys ships an **official Agent Skill suite** so your AI assistant writes, reviews, and
83
+ debugs zaileys code with best practices — it knows the exact API, common pitfalls, and how
84
+ to fix errors. Install it straight from this repo:
85
85
 
86
86
  ```bash
87
87
  # Claude Code (native plugin — supports auto-update)
88
88
  /plugin marketplace add zeative/zaileys
89
- /plugin install zaileys@zeative
89
+ /plugin install zaileys-official@zeative
90
90
 
91
91
  # npx skills (multi-agent: Claude Code, Codex, Cursor, OpenCode)
92
92
  npx skills add zeative/zaileys # add -g for a global install
93
93
  ```
94
94
 
95
- Both install the same skill (`skills/zaileys/`) with deep references for the API, recipes,
96
- errors, troubleshooting, and anti-patterns. See [the skill guide](https://zeative.github.io/zaileys/skill/).
95
+ The suite has an orchestrator that auto-routes plus three focused skills:
96
+
97
+ | Command (plugin) | Does |
98
+ | ---------------- | ---- |
99
+ | `/zaileys-official:assist` | Orchestrator — auto-detects intent (build / debug / review / explain) |
100
+ | `/zaileys-official:scaffold` | Generate a complete runnable bot from a short spec |
101
+ | `/zaileys-official:debug` | Diagnose a zaileys error/symptom → cause → fix |
102
+ | `/zaileys-official:review` | Audit code vs best practices + ban-safety |
103
+
104
+ Each skill also fetches the [live docs](https://zeative.github.io/zaileys/llms-full.txt) for the latest API. See [the skill guide](https://zeative.github.io/zaileys/skill/).
97
105
 
98
106
  ## Why Zaileys
99
107
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zaileys",
3
3
  "description": "Zaileys - Simplified WhatsApp Node.js TypeScript/JavaScript API",
4
- "version": "4.0.0",
4
+ "version": "4.0.1",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "main": "./dist/index.cjs",
@@ -46,6 +46,7 @@
46
46
  "docs:dev": "npm --prefix docs run dev",
47
47
  "docs:build": "npm --prefix docs run build",
48
48
  "docs:deploy": "bash docs/deploy.sh",
49
+ "skill:sync": "node scripts/sync-skill.mjs",
49
50
  "changeset": "changeset",
50
51
  "release:version": "changeset version && pnpm install",
51
52
  "release:publish": "pnpm run build && changeset publish",