Skip to content

ai-schemaA Schema Definition Platform for Safe and Effective AI Collaboration

Innovate front-end development with guardrails and schema definitions that accelerate AI-driven development.

ai-schema Logo

Pioneering the Future of AI-Driven Development

ai-schema is a platform that provides guardrails and schema definitions to safely and efficiently promote AI-driven development. Especially in front-end development, it ensures safety even if AI makes mistakes and promotes collaboration between developers and AI.

Overview

In the future of IT business, AI-driven development using methods like Vibe Coding is indispensable. Particularly in the UI domain, AI-driven development can yield significant results even with minor imperfections. ai-schema provides the guardrails and schema definitions to safely promote such AI-driven development.

bash
# Quick Installation
git clone https://github.com/ToyB0x/ai-schema.git
cd ai-schema
pnpm install && pnpm build
json
{
  "mcpServers": {
    "@ai-schema/mcp": {
      "command": "node",
      "args": [
        "/PATH/TO/YOUR_DIR/ai-schema/apps/mcp/dist/index.js"
      ],
      "autoApprove": [],
      "disabled": false
    }
  }
}
markdown
Instructions for AI Assistant:

- Generate UI components based on the GraphQL schema.
- Implement form validation according to the schema definition.
- Validate user input using the OpenAI API.
typescript
// GraphQL Schema Definition
const userSchema = `
  type User {
    id: ID!
    name: String!
    email: String!
    role: UserRole!
  }
  
  enum UserRole {
    ADMIN
    USER
    GUEST
  }
`;

// AI generates UI components based on this schema

Released under the MIT License.