@wooksjs/event-http 0.6.1 → 0.6.3

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 CHANGED
@@ -51,6 +51,30 @@ app.listen(3000, () => {
51
51
  })
52
52
  ```
53
53
 
54
+ ## AI Agent Skills
55
+
56
+ This package ships with structured skill files for AI coding agents (Claude Code, Cursor, Windsurf, Codex, etc.).
57
+
58
+ ```bash
59
+ # Project-local (recommended — version-locked, commits with your repo)
60
+ npx @wooksjs/event-http setup-skills
61
+
62
+ # Global (available across all your projects)
63
+ npx @wooksjs/event-http setup-skills --global
64
+ ```
65
+
66
+ To keep skills automatically up-to-date, add a postinstall script to your `package.json`:
67
+
68
+ ```json
69
+ {
70
+ "scripts": {
71
+ "postinstall": "npx @wooksjs/event-http setup-skills --postinstall"
72
+ }
73
+ }
74
+ ```
75
+
76
+ This ensures the skill files are refreshed whenever dependencies are installed, without needing a separate command.
77
+
54
78
  ## Documentation
55
79
 
56
80
  To check out docs, visit [wooks.moost.org](https://wooks.moost.org/webapp/).