zaileys 4.0.0 → 4.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/README.md +5 -6
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -79,21 +79,20 @@ 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
|
|
83
|
-
zaileys code with best practices — it knows the exact API, common pitfalls, and how
|
|
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
|
-
|
|
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 focused scaffold, debug, and review skills. See the full guide → **[zeative.github.io/zaileys/skill](https://zeative.github.io/zaileys/skill/)**.
|
|
97
96
|
|
|
98
97
|
## Why Zaileys
|
|
99
98
|
|
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.
|
|
4
|
+
"version": "4.0.2",
|
|
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",
|