@k8o/arte-odyssey 4.0.0 → 4.2.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/README.md +2 -9
- package/dist/components/icons/arte-odyssey.mjs +63 -287
- package/dist/components/icons/base.d.mts +1 -1
- package/dist/components/icons/base.mjs +10 -1
- package/dist/components/index.d.mts +1 -2
- package/dist/components/index.mjs +1 -2
- package/dist/index.d.mts +1 -2
- package/dist/index.mjs +1 -2
- package/docs/GUIDE.md +232 -0
- package/docs/references/color.md +86 -0
- package/docs/references/components.md +449 -0
- package/docs/references/interaction-design.md +74 -0
- package/docs/references/spatial-design.md +101 -0
- package/docs/references/typography.md +67 -0
- package/package.json +3 -3
- package/dist/components/utility/error-boundary/index.d.mts +0 -2
- package/dist/components/utility/error-boundary/index.mjs +0 -2
package/README.md
CHANGED
|
@@ -66,15 +66,9 @@ function MyPage() {
|
|
|
66
66
|
}
|
|
67
67
|
```
|
|
68
68
|
|
|
69
|
-
## AI Agent
|
|
69
|
+
## AI Agent Documentation
|
|
70
70
|
|
|
71
|
-
ArteOdyssey
|
|
72
|
-
|
|
73
|
-
```bash
|
|
74
|
-
npx skills add k35o/ArteOdyssey --skill arte-odyssey-usage
|
|
75
|
-
```
|
|
76
|
-
|
|
77
|
-
Compatible with Claude Code, Cursor, GitHub Copilot, and other [Agent Skills](https://agentskills.io/) compatible tools.
|
|
71
|
+
ArteOdyssey includes design system documentation in `docs/` directory. When installed via npm, AI coding assistants can reference `node_modules/@k8o/arte-odyssey/docs/GUIDE.md` for design principles, component APIs, and usage patterns.
|
|
78
72
|
|
|
79
73
|
## Component Categories
|
|
80
74
|
|
|
@@ -132,7 +126,6 @@ Compatible with Claude Code, Cursor, GitHub Copilot, and other [Agent Skills](ht
|
|
|
132
126
|
|
|
133
127
|
### Utilities
|
|
134
128
|
|
|
135
|
-
- **ErrorBoundary** - Error handling wrapper
|
|
136
129
|
- **ArteOdysseyProvider** - Context providers for the library
|
|
137
130
|
- **Icons** - Icon component collection
|
|
138
131
|
|