Production site: agentseed.dev
AgentSeed is a focused Nuxt + Tailwind app for generating complete AGENTS.md instruction files for software projects that use AI coding agents such as Codex, Claude, Cursor, and similar tools.
The generator runs fully client-side. Users configure project details, stack, architecture, coding standards, indentation preference, testing expectations, agent behavior rules, setup prompts, and optional sections, then copy or download a deterministic AGENTS.md.
- Live
AGENTS.mdpreview that updates as settings change. - Deterministic markdown generation with no external AI API.
- Client-side copy and download actions.
- Saved latest settings through browser
localStorage. - SEO metadata, structured data, sitemap, and social preview assets for the public site.
- Visitors analytics for pageviews and engagement events.
- Nuxt 4
- Vue 3
- TypeScript
- Tailwind CSS via
@nuxtjs/tailwindcss
Install dependencies:
npm installStart the local development server:
npm run devBy default, Nuxt serves the app at http://localhost:3000.
Build for production:
npm run buildGenerate a static build:
npm run generatePreview a production build locally:
npm run previewAgentSeed is licensed under the MIT License.
app/app.vuewires together SEO metadata, persisted generator state, and the single-page layout.app/componentscontains the header, hero, feature cards, generator form, markdown preview, FAQ, and footer.app/data/options.tscontains selectable options, defaults, and the productionsiteUrl.app/types/agents.tsdefines the generator configuration types.app/composables/useAgentsGenerator.tsconverts selected options into the generated markdown.app/composables/useMarkdownActions.tshandles clipboard and download actions.app/composables/useVisitorsTracking.tswraps Visitors custom event tracking.app/assets/css/main.csscontains global Tailwind styles.public/logo.svg, favicon files,public/apple-touch-icon.png,public/producthunt-logo.png,public/robots.txt,public/sitemap.xml, andpublic/og-image.pngsupport branding, search, and social crawlers.