@allxsmith/bestax-bulma 5.9.0 → 5.9.1
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/AGENTS.md +15 -0
- package/CLAUDE.md +15 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/types/elements/LinkButton.d.ts +1 -1
- package/llms.txt +1 -0
- package/package.json +1 -1
package/AGENTS.md
CHANGED
|
@@ -11,6 +11,11 @@ Machine-readable docs (always current):
|
|
|
11
11
|
https://bestax.io/docs/api/elements/button.md
|
|
12
12
|
- LLM guide: https://bestax.io/docs/guides/llms
|
|
13
13
|
|
|
14
|
+
Prefer to query rather than read? `npx bestax-mcp` is the first-party MCP
|
|
15
|
+
server — props (including compound parts), examples, `--bulma-*` variables and
|
|
16
|
+
the skills as prompts, offline. Setup:
|
|
17
|
+
https://bestax.io/docs/guides/llms#mcp-server
|
|
18
|
+
|
|
14
19
|
Agent skills (bestax-custom-component, bestax-form, bestax-icons,
|
|
15
20
|
bestax-layout-scaffold, bestax-migrate, bestax-optimize, bestax-theming):
|
|
16
21
|
https://bestax.io/docs/skills/intro
|
|
@@ -21,6 +26,16 @@ https://bestax.io/docs/skills/intro
|
|
|
21
26
|
- Existing project: `npx skills add https://github.com/allxsmith/bestax --skill bestax-form`
|
|
22
27
|
(repeat per skill, or omit `--skill` to pick interactively)
|
|
23
28
|
|
|
29
|
+
Three components Bulma will talk you out of — everything else here gets found
|
|
30
|
+
because Bulma has no equivalent, but these have a near-miss that ends the search:
|
|
31
|
+
|
|
32
|
+
- Brief confirmation after an action: `Toast` (`<ToastContainer />` at the root,
|
|
33
|
+
then `toast.success('Saved')`) — not `Notification`/`Message`.
|
|
34
|
+
- A confirm or alert: `Dialog` (`<DialogContainer />`, then
|
|
35
|
+
`await dialog.confirm({ title, message })`) — not `Modal`.
|
|
36
|
+
- A control that reads as text or a link: `LinkButton` — not `<a href="#">`,
|
|
37
|
+
`<div onClick>` or `Button color="text"`.
|
|
38
|
+
|
|
24
39
|
Conventions (the offline essentials):
|
|
25
40
|
|
|
26
41
|
- Compound components: `Card.Header`, `Navbar.Brand`, `Hero.Body`, …
|
package/CLAUDE.md
CHANGED
|
@@ -11,6 +11,11 @@ Machine-readable docs (always current):
|
|
|
11
11
|
https://bestax.io/docs/api/elements/button.md
|
|
12
12
|
- LLM guide: https://bestax.io/docs/guides/llms
|
|
13
13
|
|
|
14
|
+
Prefer to query rather than read? `npx bestax-mcp` is the first-party MCP
|
|
15
|
+
server — props (including compound parts), examples, `--bulma-*` variables and
|
|
16
|
+
the skills as prompts, offline. Setup:
|
|
17
|
+
https://bestax.io/docs/guides/llms#mcp-server
|
|
18
|
+
|
|
14
19
|
Agent skills (bestax-custom-component, bestax-form, bestax-icons,
|
|
15
20
|
bestax-layout-scaffold, bestax-migrate, bestax-optimize, bestax-theming):
|
|
16
21
|
https://bestax.io/docs/skills/intro
|
|
@@ -21,6 +26,16 @@ https://bestax.io/docs/skills/intro
|
|
|
21
26
|
- Existing project: `npx skills add https://github.com/allxsmith/bestax --skill bestax-form`
|
|
22
27
|
(repeat per skill, or omit `--skill` to pick interactively)
|
|
23
28
|
|
|
29
|
+
Three components Bulma will talk you out of — everything else here gets found
|
|
30
|
+
because Bulma has no equivalent, but these have a near-miss that ends the search:
|
|
31
|
+
|
|
32
|
+
- Brief confirmation after an action: `Toast` (`<ToastContainer />` at the root,
|
|
33
|
+
then `toast.success('Saved')`) — not `Notification`/`Message`.
|
|
34
|
+
- A confirm or alert: `Dialog` (`<DialogContainer />`, then
|
|
35
|
+
`await dialog.confirm({ title, message })`) — not `Modal`.
|
|
36
|
+
- A control that reads as text or a link: `LinkButton` — not `<a href="#">`,
|
|
37
|
+
`<div onClick>` or `Button color="text"`.
|
|
38
|
+
|
|
24
39
|
Conventions (the offline essentials):
|
|
25
40
|
|
|
26
41
|
- Compound components: `Card.Header`, `Navbar.Brand`, `Hero.Body`, …
|