Skip to content
Closed
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,13 @@ Then you can import it into any JavaScript or TypeScript file.
```ts
import { … } from '@formisch/preact';
```

## For AI Agents

Formisch includes an agent skill that teaches AI agents the correct patterns for working with Formisch forms. You can install it by running the following command in your terminal:

```bash
npx skills add open-circle/agent-skills
npx add-skill open-circle/agent-skills
```
Comment on lines +62 to +65
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Clarify whether these commands are alternatives or must both be run.

npx skills add and npx add-skill are two separate CLI tools, both capable of installing agent skills from a GitHub repo. Placing them together in a single code block without comments implies the user should run both sequentially, but they are actually equivalent alternatives.

This is also inconsistent with the file's existing convention, where each command line in a bash block carries an inline comment (e.g., # npm, # yarn) to explain its purpose. Either add inline comments to make the intent explicit, or split them into two blocks with prose in between.

✏️ Suggested clarification
 ```bash
-npx skills add open-circle/agent-skills
-npx add-skill open-circle/agent-skills
+npx skills add open-circle/agent-skills    # using the skills CLI
+# or
+npx add-skill open-circle/agent-skills     # using the add-skill CLI
</details>

<!-- suggestion_start -->

<details>
<summary>📝 Committable suggestion</summary>

> ‼️ **IMPORTANT**
> Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

```suggestion

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@website/src/routes/`(docs)/preact/guides/(get-started)/installation/index.mdx
around lines 62 - 65, The two CLI lines ("npx skills add
open-circle/agent-skills" and "npx add-skill open-circle/agent-skills") are
alternatives, not commands to run sequentially; update the snippet in index.mdx
to make that explicit by either adding inline comments to each line (e.g.,
append " # using the skills CLI" to "npx skills add open-circle/agent-skills"
and " # using the add-skill CLI" to "npx add-skill open-circle/agent-skills") or
split them into two separate bash blocks with a short sentence between
explaining they are equivalent alternatives.

[Learn more](https://github.com/open-circle/agent-skills) about the formisch skill.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ We provide several LLMs.txt routes. Use the route that works best with your AI t
- [`llms-preact-full.txt`](/llms-preact-full.txt) contains the Markdown content of the entire Preact docs
- [`llms-preact-guides.txt`](/llms-preact-guides.txt) contains the Markdown content of the Preact guides
- [`llms-preact-api.txt`](/llms-preact-api.txt) contains the Markdown content of the Preact API reference
- [`agent-skill`](https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md) contains specialized instructions for AI agents to build forms and manage state.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify the agent-skill GitHub URL returns HTTP 200
curl -o /dev/null -s -w "%{http_code}\n" \
  "https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md"

Repository: open-circle/formisch

Length of output: 67


Remove or replace the broken GitHub link.

The URL https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md returns HTTP 404 and does not exist. Either update the link to a valid resource or remove the reference before publication.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@website/src/routes/`(docs)/preact/guides/(get-started)/llms-txt/index.mdx at
line 27, The markdown link labeled `agent-skill` points to a dead URL
`https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md`;
update or remove it in the `index.mdx` content: either replace the broken URL
with a valid/working resource (or a new repo/path) or delete the link (and
optionally replace with plain text like "agent-skill" or remove the whole
sentence) so the page no longer references the 404 target.

⚠️ Potential issue | 🟡 Minor

External link doesn't belong under "Available routes" and has formatting inconsistencies.

Three issues with this entry:

  1. Section mismatch: The "Available routes" section describes internal site routes (e.g., /llms.txt, /llms-preact.txt). This entry is an external GitHub link, not a route. Consider moving it to a new section (e.g., ## For AI Agents or ## Agent Skills) to avoid misleading users.

  2. Label style: All other list items use the literal route path as the link label (e.g., `llms.txt`, `llms-preact.txt`). agent-skill is a descriptive name, not a path — breaking the established convention. If kept in this section, the label should reflect the actual resource identifier.

  3. Trailing period: All other descriptions omit a trailing period; this one adds one. Keep consistent.

✏️ Proposed fix (separate section, consistent style)
-## Available routes
+## Available routes

 We provide several LLMs.txt routes. Use the route that works best with your AI tool.

 - [`llms.txt`](/llms.txt) contains a table of contents with links to all Markdown files
 - [`llms-preact.txt`](/llms-preact.txt) contains a table of contents with links to Preact related files
 - [`llms-preact-full.txt`](/llms-preact-full.txt) contains the Markdown content of the entire Preact docs
 - [`llms-preact-guides.txt`](/llms-preact-guides.txt) contains the Markdown content of the Preact guides
 - [`llms-preact-api.txt`](/llms-preact-api.txt) contains the Markdown content of the Preact API reference
-- [`agent-skill`](https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md) contains specialized instructions for AI agents to build forms and manage state.
+
+## For AI Agents
+
+- [`SKILL.md`](https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md) contains specialized instructions for AI agents to build forms and manage state
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- [`agent-skill`](https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md) contains specialized instructions for AI agents to build forms and manage state.
## Available routes
We provide several LLMs.txt routes. Use the route that works best with your AI tool.
- [`llms.txt`](/llms.txt) contains a table of contents with links to all Markdown files
- [`llms-preact.txt`](/llms-preact.txt) contains a table of contents with links to Preact related files
- [`llms-preact-full.txt`](/llms-preact-full.txt) contains the Markdown content of the entire Preact docs
- [`llms-preact-guides.txt`](/llms-preact-guides.txt) contains the Markdown content of the Preact guides
- [`llms-preact-api.txt`](/llms-preact-api.txt) contains the Markdown content of the Preact API reference
## For AI Agents
- [`SKILL.md`](https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md) contains specialized instructions for AI agents to build forms and manage state
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@website/src/routes/`(docs)/preact/guides/(get-started)/llms-txt/index.mdx at
line 27, The external GitHub link labeled `agent-skill` was incorrectly placed
under the "Available routes" list, uses a non-conforming label, and includes a
trailing period; move that link out of the "Available routes" section into a new
section header (e.g., "## Agent Skills" or "## For AI Agents"), change the link
label to follow the site's convention (use the actual resource identifier as
inline code, e.g., `agent-skill` or the relevant path if one exists), and remove
the trailing period from the description so formatting matches the other list
items.


## How to use it

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,13 @@ Then you can import it into any JavaScript or TypeScript file.
```ts
import { … } from '@formisch/qwik';
```

## For AI Agents

Formisch includes an agent skill that teaches AI agents the correct patterns for working with Formisch forms. You can install it by running the following command in your terminal:

```bash
npx skills add open-circle/agent-skills
npx add-skill open-circle/agent-skills
```
Comment on lines +62 to +65
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Clarify that these commands are alternatives, not sequential steps.

npx skills add (Skills.sh CLI) and npx add-skill (Vercel Labs tool) are two different tools that both install agent skills. Listing them together without explanation implies users should run both sequentially. Add inline comments or split into separate blocks to indicate they are alternatives.

✏️ Suggested clarification
 ```bash
-npx skills add open-circle/agent-skills
-npx add-skill open-circle/agent-skills
+npx skills add open-circle/agent-skills    # using the skills CLI
+# or
+npx add-skill open-circle/agent-skills     # using the add-skill CLI
</details>

<!-- suggestion_start -->

<details>
<summary>📝 Committable suggestion</summary>

> ‼️ **IMPORTANT**
> Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

```suggestion

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@website/src/routes/`(docs)/qwik/guides/(get-started)/installation/index.mdx
around lines 62 - 65, The two CLI commands shown (npx skills add
open-circle/agent-skills and npx add-skill open-circle/agent-skills) are
alternatives, not steps; update the MDX so it clearly indicates they are
mutually exclusive by either splitting them into separate fenced code blocks
with a brief inline comment (e.g., “# using the skills CLI” and “# using the
add-skill CLI”) or adding a short sentence above the block that says “Choose one
of the following commands.” Locate the occurrences of the exact command strings
in the document and apply the clarification.

[Learn Learn](https://github.com/open-circle/agent-skills) about the formisch skill.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ We provide several LLMs.txt routes. Use the route that works best with your AI t
- [`llms-qwik-full.txt`](/llms-qwik-full.txt) contains the Markdown content of the entire Qwik docs
- [`llms-qwik-guides.txt`](/llms-qwik-guides.txt) contains the Markdown content of the Qwik guides
- [`llms-qwik-api.txt`](/llms-qwik-api.txt) contains the Markdown content of the Qwik API reference
- [`agent-skill`](https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md) contains specialized instructions for AI agents to build forms and manage state.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

New entry is miscategorized under "Available routes"

The surrounding section (line 18–20) is titled "Available routes" and explicitly describes these as "LLMs.txt routes" on the site. The agent-skill entry is an external GitHub link to a SKILL.md, not a route — placing it here conflates two unrelated concepts and could confuse users looking for site-hosted LLMs.txt endpoints.

Consider either:

  • Moving it to a dedicated subsection (e.g., "For AI Agents" or "Agent Skills"), consistent with how the installation guides reportedly present this feature in the PR, or
  • Adding a brief parenthetical to differentiate it from the LLMs.txt route entries above.

Additionally, the link label agent-skill is inconsistent with all other list items, which use the actual filename (e.g., `llms.txt`, `llms-qwik.txt`). Consider using `SKILL.md` or the full skill path as the label.

✏️ Suggested restructure
 - [`llms-qwik-api.txt`](/llms-qwik-api.txt) contains the Markdown content of the Qwik API reference
-
-## How to use it
+- [`agent-skill`](https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md) contains specialized instructions for AI agents to build forms and manage state.
+
+## For AI Agents
+
+- [`SKILL.md`](https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md) contains specialized instructions for AI agents to build forms and manage state.
+
+## How to use it
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@website/src/routes/`(docs)/qwik/guides/(get-started)/llms-txt/index.mdx at
line 27, The new `agent-skill` link in
website/src/routes/(docs)/qwik/guides/(get-started)/llms-txt/index.mdx is
miscategorized under the "Available routes" (LLMs.txt routes) section; move the
entry out of that list into a new subsection (e.g., "For AI Agents" or "Agent
Skills") or at minimum add a parenthetical clarifying it is an external skill
file, and change the link label from `agent-skill` to a consistent filename
label such as `SKILL.md` or the full path `skills/formisch/SKILL.md` so it no
longer appears as a site route.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🌐 Web query:

GitHub repository open-circle/agent-skills skills/formisch/SKILL.md

💡 Result:

In open-circle/agent-skills, there isn’t a skills/formisch/SKILL.md; the Formisch skill lives at skills/formisch-usage/SKILL.md and is named formisch-usage (MIT, author open-circle, version 1.1). (raw.githubusercontent.com)

That SKILL.md is a “how to use Formisch” guide for agents, covering: when to use the skill (Formisch form state + validation across React/Vue/Solid/Preact/Svelte/Qwik), installation, schema-first usage with Valibot, form-store + field-store concepts, framework examples, configuration (validate/revalidate timing), typed field paths, common helper APIs (getInput, setInput, validate, focus, submit, etc.), and dynamic FieldArray operations (insert/remove/move/swap/replace). (raw.githubusercontent.com)

Citations:


Update the GitHub link to the correct repository path

The linked URL is incorrect. The skill is located at skills/formisch-usage/SKILL.md (not skills/formisch/SKILL.md). Update the link to:

https://github.com/open-circle/agent-skills/blob/main/skills/formisch-usage/SKILL.md

The repository and file are publicly accessible; only the path needs correction.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@website/src/routes/`(docs)/qwik/guides/(get-started)/llms-txt/index.mdx at
line 27, Update the markdown link that currently points to
skills/formisch/SKILL.md so it targets the correct path
skills/formisch-usage/SKILL.md; specifically, replace the URL in the
[`agent-skill`](https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md)
link with
https://github.com/open-circle/agent-skills/blob/main/skills/formisch-usage/SKILL.md
so the [`agent-skill`] anchor references the correct repository file.


## How to use it

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,13 @@ Then you can import it into any JavaScript or TypeScript file.
```ts
import { … } from '@formisch/react';
```

## For AI Agents

Formisch includes an agent skill that teaches AI agents the correct patterns for working with Formisch forms. You can install it by running the following command in your terminal:

```bash
npx skills add open-circle/agent-skills
npx add-skill open-circle/agent-skills
```
[Learn more](https://github.com/open-circle/agent-skills) about the formisch skill.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ We provide several LLMs.txt routes. Use the route that works best with your AI t
- [`llms-react-full.txt`](/llms-react-full.txt) contains the Markdown content of the entire React docs
- [`llms-react-guides.txt`](/llms-react-guides.txt) contains the Markdown content of the React guides
- [`llms-react-api.txt`](/llms-react-api.txt) contains the Markdown content of the React API reference
- [`agent-skill`](https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md) contains specialized instructions for AI agents to build forms and manage state.

## How to use it

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,13 @@ Then you can import it into any JavaScript or TypeScript file.
```ts
import { … } from '@formisch/solid';
```

## For AI Agents

Formisch includes an agent skill that teaches AI agents the correct patterns for working with Formisch forms. You can install it by running the following command in your terminal:

```bash
npx skills add open-circle/agent-skills
npx add-skill open-circle/agent-skills
```
Comment on lines +62 to +65
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🌐 Web query:

open-circle/agent-skills installation command npx official

💡 Result:

Official npx install command (via the skills CLI):

npx skills add open-circle/agent-skills

This follows the documented syntax npx skills add <owner/repo>. [1][2]


🌐 Web query:

"npx skills add" vs "npx add-skill" open-circle agent-skills

💡 Result:

They’re two different CLIs / ecosystems that both happen to work with “agent skills” repos (folders with SKILL.md).

npx skills add … (Skills.sh CLI)

  • Comes from the Skills.sh project (skills CLI).
  • Usage is explicitly npx skills add <skill-name> / npx skills add owner/repo (it downloads and configures the skill via the Skills.sh flow). [1][2]
  • Example for your repo would typically be:
    • npx skills add open-circle/agent-skills (or a full git URL) [1][2]

npx add-skill … (Vercel Labs add-skill)

  • Comes from Vercel Labs’ add-skill tool.
  • Usage is npx add-skill <git-repo> and it auto-detects supported agents (Cursor/Claude Code/OpenCode/Codex, etc.) and installs skills into the right local/global directories. [3]
  • Example:
    • npx add-skill open-circle/agent-skills (it supports installing from git repos, not just Vercel’s). [3]

So which should you use for open-circle/agent-skills?

  • Use npx skills add … if you’re using the Skills.sh CLI/leaderboard workflow. [1][2]
  • Use npx add-skill … if you want agent auto-detection + installation into your agent’s skill folders (Vercel’s installer-style workflow). [3]

Sources: [1] Skills.sh CLI docs, [2] Skills CLI docs (whatisskills.com), [3] add-skill official site/docs.


🏁 Script executed:

# Search the repository for references to these commands or agent-skills installation
rg "skills add|add-skill" --type mdx --type md --type json --type yaml --type yml -i

Repository: open-circle/formisch

Length of output: 91


🏁 Script executed:

# Check the installation guide file to see full context
cat -n website/src/routes/\(docs\)/solid/guides/\(get-started\)/installation/index.mdx | head -80 | tail -30

Repository: open-circle/formisch

Length of output: 1121


Clarify the two agent installation methods as distinct alternatives.

Lines 63–64 present two different commands from separate tools (npx skills add from Skills.sh and npx add-skill from Vercel Labs) as if they should run sequentially, which will confuse users. Both are valid but serve different installation workflows—Skills.sh for skill management, and add-skill for agent auto-detection and directory setup. Either command installs the agent skill, but users should understand when to use each. Label these as alternatives and briefly explain their purposes to avoid misuse.

Also, line 66 uses lowercase "formisch"; consider updating to "Formisch" for consistency with the product name elsewhere in the docs.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@website/src/routes/`(docs)/solid/guides/(get-started)/installation/index.mdx
around lines 62 - 65, Clarify that the two lines are alternative installation
methods rather than steps: label `npx skills add open-circle/agent-skills` as
the Skills.sh workflow (skill management/registration) and `npx add-skill
open-circle/agent-skills` as the Vercel Labs/agent auto-detection workflow
(creates directory and scaffolds agent files), and add a one-line note telling
users to run only the command matching their chosen workflow; also update the
lowercase product name `formisch` to `Formisch` for consistency.

[Learn more](https://github.com/open-circle/agent-skills) about the formisch skill.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ We provide several LLMs.txt routes. Use the route that works best with your AI t
- [`llms-solid-full.txt`](/llms-solid-full.txt) contains the Markdown content of the entire SolidJS docs
- [`llms-solid-guides.txt`](/llms-solid-guides.txt) contains the Markdown content of the SolidJS guides
- [`llms-solid-api.txt`](/llms-solid-api.txt) contains the Markdown content of the SolidJS API reference
- [`agent-skill`](https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md) contains specialized instructions for AI agents to build forms and manage state.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

# Check if the GitHub URL is reachable
curl -I -s -w "\nHTTP Status: %{http_code}\n" \
  "https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md"

Repository: open-circle/formisch

Length of output: 4974


🏁 Script executed:

# Read the file to examine the context around line 27
cat -n website/src/routes/'(docs)'/solid/guides/'(get-started)'/llms-txt/index.mdx | sed -n '20,35p'

Repository: open-circle/formisch

Length of output: 1295


🏁 Script executed:

# Also check if the file exists and get its general structure
wc -l website/src/routes/'(docs)'/solid/guides/'(get-started)'/llms-txt/index.mdx

Repository: open-circle/formisch

Length of output: 138


This pull request adds a broken link — the GitHub URL returns 404.

The URL https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md is inaccessible (HTTP 404). Either the repository path is incorrect or the file does not exist; this must be verified and corrected before merging.

Additionally, this entry does not fit the section context. Lines 22–26 list internal site routes using their paths as labels (e.g., /llms.txt), but line 27 adds an external GitHub resource with a generic label (agent-skill). Consider either moving this to a separate "External resources" section or removing it entirely if the URL cannot be verified.

Minor: Line 27 is the only entry with a trailing period; remove it for consistency with lines 22–26.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@website/src/routes/`(docs)/solid/guides/(get-started)/llms-txt/index.mdx at
line 27, The listed external link label "agent-skill" points to a 404 GitHub URL
(https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md)
and also doesn't match the surrounding internal route entries; verify or correct
the URL (replace with the correct repo/path if available), otherwise remove the
entry; if you want to keep it as an external resource, move the "agent-skill"
entry into a new "External resources" section instead of the internal routes
list; also remove the trailing period after the entry so punctuation matches the
other list items.


## How to use it

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,13 @@ Then you can import it into any JavaScript or TypeScript file.
```ts
import { … } from '@formisch/svelte';
```

## For AI Agents

Formisch includes an agent skill that teaches AI agents the correct patterns for working with Formisch forms. You can install it by running the following command in your terminal:

```bash
npx skills add open-circle/agent-skills
npx add-skill open-circle/agent-skills
```
[Learn more](https://github.com/open-circle/agent-skills) about the formisch skill.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Resolve the CI style warning before merge.

The pipeline reports formatting issues; please run Prettier on this file so CI passes cleanly.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@website/src/routes/`(docs)/svelte/guides/(get-started)/installation/index.mdx
around lines 57 - 66, CI is flagging formatting in the "For AI Agents" section
of the MDX (the heading "For AI Agents" and the adjacent code block containing
the npx skill install commands); run Prettier (or your editor’s formatter) on
this MDX so the code fence, spacing, and line endings conform to the repo style,
then stage and commit the formatted file so CI passes.

Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ We provide several LLMs.txt routes. Use the route that works best with your AI t
- [`llms-svelte-full.txt`](/llms-svelte-full.txt) contains the Markdown content of the entire Svelte docs
- [`llms-svelte-guides.txt`](/llms-svelte-guides.txt) contains the Markdown content of the Svelte guides
- [`llms-svelte-api.txt`](/llms-svelte-api.txt) contains the Markdown content of the Svelte API reference
- [`agent-skill`](https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md) contains specialized instructions for AI agents to build forms and manage state.

## How to use it

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,13 @@ Then you can import it into any JavaScript or TypeScript file.
```ts
import { … } from '@formisch/vue';
```

## For AI Agents

Formisch includes an agent skill that teaches AI agents the correct patterns for working with Formisch. You can install it by running the following command in your terminal:

```bash
npx skills add open-circle/agent-skills
npx add-skill open-circle/agent-skills
```
[Learn more](https://github.com/open-circle/agent-skills) about the formisch skill.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ We provide several LLMs.txt routes. Use the route that works best with your AI t
- [`llms-vue-full.txt`](/llms-vue-full.txt) contains the Markdown content of the entire Vue docs
- [`llms-vue-guides.txt`](/llms-vue-guides.txt) contains the Markdown content of the Vue guides
- [`llms-vue-api.txt`](/llms-vue-api.txt) contains the Markdown content of the Vue API reference
- [`agent-skill`](https://github.com/open-circle/agent-skills/blob/main/skills/formisch/SKILL.md) contains specialized instructions for AI agents to build forms and manage state.

## How to use it

Expand Down
Loading