Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions content/docs/guide/agent-skills.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ skills/objectui/
├── rules/ # Non-negotiable global constraints
│ ├── protocol.md
│ ├── styling.md
│ ├── composition.md
│ └── no-touch-zones.md
│ └── composition.md
├── guides/ # Domain-specific deep dives, loaded on demand
│ ├── architecture.md
│ ├── app-composition.md
│ ├── page-builder.md
│ ├── plugin-development.md
│ ├── schema-expressions.md
Expand All @@ -55,11 +55,18 @@ skills/objectui/
│ ├── testing.md
│ ├── i18n.md
│ ├── mobile.md
│ ├── auth-permissions.md
│ └── console-development.md
│ └── auth-permissions.md
└── evals/ # Machine-checkable prompts (one per guide)
```

Two files that once shipped in this bundle — `rules/no-touch-zones.md` and
`guides/console-development.md` — moved into the repo-internal
[`.claude/skills/objectui-contributor/`](https://github.com/objectstack-ai/objectui/tree/main/.claude/skills/objectui-contributor)
skill instead. Both talk about paths that only exist inside this monorepo — `apps/console/`
and `packages/components/src/ui/` — which a customer install of the published skill never
has, so they stayed behind as contributor-only guidance rather than shipping to every
consumer.

When the agent picks up a task it:

1. Reads `SKILL.md` for core principles, scope boundaries, and the package map.
Expand Down