Skip to content

Commit 09ecec8

Browse files
committed
Fix markdown table formatting in documentation
1 parent 4b571df commit 09ecec8

File tree

3 files changed

+29
-28
lines changed

3 files changed

+29
-28
lines changed

AGENTS.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ Never save screenshots, images, or other binary artifacts to the repository root
7373

7474
Agent skills in `.agents/skills/` provide detailed guidance for architectural rules and design patterns. Read the relevant skill before making changes.
7575

76-
| Skill | When to use |
77-
| --- | --- |
78-
| `delegate-to-agent` | Delegating AI work from UI or scripts to the agent |
79-
| `files-as-database` | Storing or reading app state |
80-
| `scripts` | Creating or running agent scripts |
81-
| `sse-file-watcher` | Wiring up real-time UI sync |
82-
| `self-modifying-code` | Editing app source, components, or styles |
83-
| `create-skill` | Adding new skills for the agent |
84-
| `capture-learnings` | Recording corrections and patterns |
85-
| `frontend-design` | Building or styling any web UI, components, or pages |
76+
| Skill | When to use |
77+
| --------------------- | ---------------------------------------------------- |
78+
| `delegate-to-agent` | Delegating AI work from UI or scripts to the agent |
79+
| `files-as-database` | Storing or reading app state |
80+
| `scripts` | Creating or running agent scripts |
81+
| `sse-file-watcher` | Wiring up real-time UI sync |
82+
| `self-modifying-code` | Editing app source, components, or styles |
83+
| `create-skill` | Adding new skills for the agent |
84+
| `capture-learnings` | Recording corrections and patterns |
85+
| `frontend-design` | Building or styling any web UI, components, or pages |
8686

8787
The **`frontend-design`** skill (sourced from [Anthropic's skills library](https://github.com/anthropics/skills/blob/main/skills/frontend-design/SKILL.md)) applies whenever the agent generates or modifies UI. It enforces distinctive, production-grade aesthetics — avoiding generic AI-generated design patterns like purple gradients, overused fonts, and cookie-cutter layouts.

README.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -133,22 +133,23 @@ Your app code is identical regardless of harness. Start local, go to cloud when
133133

134134
Agent-native ships with built-in **skills** — structured guidance files in `.agents/skills/` that teach the AI agent how to work within the framework. Every new app created with `npx @agent-native/core create` includes them automatically.
135135

136-
| Skill | Purpose |
137-
| --- | --- |
138-
| `files-as-database` | Store and read all state as files |
139-
| `delegate-to-agent` | Route AI work through the agent chat |
140-
| `scripts` | Create and run agent-callable scripts |
141-
| `sse-file-watcher` | Keep the UI in sync via SSE |
142-
| `self-modifying-code` | Safely edit app source and components |
143-
| `create-skill` | Add new skills to the agent |
144-
| `capture-learnings` | Record corrections and patterns |
145-
| `frontend-design` | Build distinctive, production-grade UI |
136+
| Skill | Purpose |
137+
| --------------------- | -------------------------------------- |
138+
| `files-as-database` | Store and read all state as files |
139+
| `delegate-to-agent` | Route AI work through the agent chat |
140+
| `scripts` | Create and run agent-callable scripts |
141+
| `sse-file-watcher` | Keep the UI in sync via SSE |
142+
| `self-modifying-code` | Safely edit app source and components |
143+
| `create-skill` | Add new skills to the agent |
144+
| `capture-learnings` | Record corrections and patterns |
145+
| `frontend-design` | Build distinctive, production-grade UI |
146146

147147
### Frontend Design Skill
148148

149149
The **`frontend-design`** skill (sourced from [Anthropic's skills library](https://github.com/anthropics/skills/blob/main/skills/frontend-design/SKILL.md)) is active across all templates and new apps. It guides the agent to produce visually striking, memorable interfaces — committing to a clear aesthetic direction rather than defaulting to generic AI-generated patterns.
150150

151151
Key principles it enforces:
152+
152153
- **Typography**: Distinctive, characterful font pairings — never Arial, Inter, or system defaults
153154
- **Color**: Cohesive palettes with dominant colors and sharp accents
154155
- **Motion**: High-impact animations and micro-interactions via CSS or Framer Motion

packages/core/src/templates/default/AGENTS.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ data/ # App data files (watched by SSE)
3838

3939
Skills in `.agents/skills/` provide detailed guidance for each architectural rule. Read them before making changes.
4040

41-
| Skill | When to read |
42-
| --- | --- |
43-
| `files-as-database` | Before storing or reading any app state |
44-
| `delegate-to-agent` | Before adding LLM calls or AI delegation |
45-
| `scripts` | Before creating or modifying scripts |
46-
| `sse-file-watcher` | Before wiring up real-time UI sync |
47-
| `self-modifying-code` | Before editing source, components, or styles |
48-
| `frontend-design` | Before building or restyling any UI component, page, or layout |
41+
| Skill | When to read |
42+
| --------------------- | -------------------------------------------------------------- |
43+
| `files-as-database` | Before storing or reading any app state |
44+
| `delegate-to-agent` | Before adding LLM calls or AI delegation |
45+
| `scripts` | Before creating or modifying scripts |
46+
| `sse-file-watcher` | Before wiring up real-time UI sync |
47+
| `self-modifying-code` | Before editing source, components, or styles |
48+
| `frontend-design` | Before building or restyling any UI component, page, or layout |
4949

5050
The **`frontend-design`** skill (sourced from [Anthropic's skills library](https://github.com/anthropics/skills/blob/main/skills/frontend-design/SKILL.md)) enforces distinctive, production-grade aesthetics — committing to a clear visual direction and avoiding generic patterns like purple gradients, overused fonts, and cookie-cutter layouts.
5151

0 commit comments

Comments
 (0)