Astro in ONE sites
SkillFiles & storageAstro 7 conventions for ONE sites — plugin wiring via one.config.ts, OneChat/OneTrack placement, Cloudflare SSR. Invoke when editing .astro files or astro.config.mjs.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Astro in ONE sites skill
What this skill tells your AI
The instructions your AI receives, as published by one-ie/one in .claude/skills/astro/SKILL.md and read by ahel’s review.
Config is the control surface
All ONE wiring lives in one.config.ts via defineOne({ backend, brand, plugins }). astro.config.mjs imports it as an integration:
import oneIntegration from './one.config.ts'
export default defineConfig({ integrations: [react(), oneIntegration] })
Add a capability by adding a plugin factory to plugins: [], not by writing bespoke code.
OneChat / OneTrack placement
The served chat/track scripts mount once, in the layout:
---
import { OneChat } from '@oneie/plugin-chat'
import { OneTrack } from '@oneie/plugin-track'
---
<Layout title="Home">
<OneTrack ws="your-workspace" slot="head" />
<slot />
<OneChat agent="your-agent" slot="footer" />
</Layout>
These emit <script async src="https://one.ie/..."> tags — the engine is served, never bundled.
SSR on Cloudflare
output: 'server' + the @astrojs/cloudflare adapter. API routes (src/pages/api/*.ts) return a Response. Read ONE data via oneClient() (see the sdk skill).
Don't
- Don't add ONE imports to
src/components/ui/(shadcn primitives stay pure). - Don't bundle chat/track engine source — use the plugin components.
Signals
- GitHub stars
- 129
- Forks
- 26
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
astro-one-ie- Source
- github.com/one-ie/one