@logosdx/hooks 1.0.0-beta.2 → 1.0.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/CHANGELOG.md +140 -0
- package/dist/browser/bundle.js +1 -1
- package/dist/browser/bundle.js.map +1 -1
- package/dist/cjs/index.js +904 -192
- package/dist/esm/index.mjs +977 -202
- package/dist/types/index.d.ts +361 -170
- package/package.json +2 -2
- package/readme.md +3 -3
- package/src/index.ts +972 -285
package/readme.md
CHANGED
|
@@ -51,18 +51,18 @@
|
|
|
51
51
|
|
|
52
52
|
We have LLM helpers available for you to use in Cursor, VSCode, and Claude Code.
|
|
53
53
|
|
|
54
|
-
For more information, see the [
|
|
54
|
+
For more information, see the [skill/references/](./skill/references/) directory.
|
|
55
55
|
|
|
56
56
|
**Add them to your `.cursor/rules` or `.claude` directory.**
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
59
|
# For Claude
|
|
60
60
|
curl -L "https://codeload.github.com/logosdx/monorepo/tar.gz/refs/heads/master" \
|
|
61
|
-
| tar -xz -C .claude --strip-components=2 "monorepo-master/
|
|
61
|
+
| tar -xz -C .claude --strip-components=2 "monorepo-master/skill/references/*.md"
|
|
62
62
|
|
|
63
63
|
# For Cursor
|
|
64
64
|
curl -L "https://codeload.github.com/logosdx/monorepo/tar.gz/refs/heads/master" \
|
|
65
|
-
| tar -xz -C .cursor/rules --strip-components=2 "monorepo-master/
|
|
65
|
+
| tar -xz -C .cursor/rules --strip-components=2 "monorepo-master/skill/references/*.md"
|
|
66
66
|
```
|
|
67
67
|
|
|
68
68
|
## Philosophy
|