https://github.com/dioncodes/agentseed
Generate AGENTS.md files for AI coding agents
https://github.com/dioncodes/agentseed
ai ai-agents developer-tools
Last synced: 25 days ago
JSON representation
Generate AGENTS.md files for AI coding agents
- Host: GitHub
- URL: https://github.com/dioncodes/agentseed
- Owner: dioncodes
- License: mit
- Created: 2026-05-21T16:11:15.000Z (about 1 month ago)
- Default Branch: master
- Last Pushed: 2026-05-21T17:54:39.000Z (about 1 month ago)
- Last Synced: 2026-05-22T01:21:32.334Z (about 1 month ago)
- Topics: ai, ai-agents, developer-tools
- Language: Vue
- Homepage: https://agentseed.dev
- Size: 212 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Agents: AGENTS.md
Awesome Lists containing this project
README
# AgentSeed
Production site: [agentseed.dev](https://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`.
## Features
- Live `AGENTS.md` preview 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.
## Stack
- Nuxt 4
- Vue 3
- TypeScript
- Tailwind CSS via `@nuxtjs/tailwindcss`
## Getting Started
Install dependencies:
```bash
npm install
```
Start the local development server:
```bash
npm run dev
```
By default, Nuxt serves the app at `http://localhost:3000`.
## Commands
Build for production:
```bash
npm run build
```
Generate a static build:
```bash
npm run generate
```
Preview a production build locally:
```bash
npm run preview
```
## License
AgentSeed is licensed under the [MIT License](LICENSE).
## Project Structure
- `app/app.vue` wires together SEO metadata, persisted generator state, and the single-page layout.
- `app/components` contains the header, hero, feature cards, generator form, markdown preview, FAQ, and footer.
- `app/data/options.ts` contains selectable options, defaults, and the production `siteUrl`.
- `app/types/agents.ts` defines the generator configuration types.
- `app/composables/useAgentsGenerator.ts` converts selected options into the generated markdown.
- `app/composables/useMarkdownActions.ts` handles clipboard and download actions.
- `app/composables/useVisitorsTracking.ts` wraps Visitors custom event tracking.
- `app/assets/css/main.css` contains global Tailwind styles.
- `public/logo.svg`, favicon files, `public/apple-touch-icon.png`, `public/producthunt-logo.png`, `public/robots.txt`, `public/sitemap.xml`, and `public/og-image.png` support branding, search, and social crawlers.