@localess/react 3.0.0-dev.20260323211059 → 3.0.0-dev.20260323212026
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 +12 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -350,6 +350,18 @@ The following are re-exported for convenience so you only need to import from `@
|
|
|
350
350
|
|
|
351
351
|
This package ships a [`SKILL.md`](./SKILL.md) file that provides AI coding agents (GitHub Copilot, Claude Code, Cursor, and others) with accurate, up-to-date APIs, patterns, and best practices. Most agents automatically read `SKILL.md` when starting a session.
|
|
352
352
|
|
|
353
|
+
### Using SKILL.md in your project
|
|
354
|
+
|
|
355
|
+
`SKILL.md` is included in the npm package, so it is available locally after installation. Reference it from your project's `AGENTS.md` to ensure your agent reads accurate Localess documentation every session:
|
|
356
|
+
|
|
357
|
+
```markdown
|
|
358
|
+
## Localess
|
|
359
|
+
|
|
360
|
+
@node_modules/@localess/react/SKILL.md
|
|
361
|
+
```
|
|
362
|
+
|
|
363
|
+
The `@` prefix is the syntax used by most agent tools (GitHub Copilot, Claude Code, Cursor) to import file contents inline into the agent context.
|
|
364
|
+
|
|
353
365
|
When you change the public API of this package, update `SKILL.md` alongside your code:
|
|
354
366
|
|
|
355
367
|
- **New option or parameter** → add it to the relevant options table and usage example
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@localess/react",
|
|
3
|
-
"version": "3.0.0-dev.
|
|
3
|
+
"version": "3.0.0-dev.20260323212026",
|
|
4
4
|
"description": "ReactJS JavaScript/TypeScript SDK for Localess's API.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"localess",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"react-dom": "^17 || ^18 || ^19"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@localess/client": "3.0.0-dev.
|
|
49
|
+
"@localess/client": "3.0.0-dev.20260323212026",
|
|
50
50
|
"@tiptap/static-renderer": "^3.20.1",
|
|
51
51
|
"@tiptap/html": "^3.20.1",
|
|
52
52
|
"@tiptap/extension-bold": "^3.20.1",
|