An open API service indexing awesome lists of open source software.

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

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.