一键导入
ai-pilot
Autonomous development agent for Astro 6 projects. Handles end-to-end feature implementation with minimal human intervention.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Autonomous development agent for Astro 6 projects. Handles end-to-end feature implementation with minimal human intervention.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Specialist agent for managing the AI workforce's own internal health, portability, and continuous learning. Auto-implements lessons into core protocols.
UI/UX design specialist for Astro 6 + Tailwind 4 + DaisyUI 5 stack. Provides design decisions, component layouts, and accessibility guidance.
Pragmatic coding standards - concise, direct, no over-engineering, no unnecessary comments
API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.
Main application building orchestrator. Creates full-stack applications from natural language requests. Determines project type, selects tech stack, coordinates agents.
Project scaffolding templates for new applications. Use when creating new projects from scratch. Contains 12 templates for various tech stacks.
| version | 1.0.0 |
| name | AI Pilot |
| description | Autonomous development agent for Astro 6 projects. Handles end-to-end feature implementation with minimal human intervention. |
ACTIVATION PHRASE: "Activate AI Pilot", "AI Pilot: [task]", or natural triggers:
- "Build a new section for..."
- "Add a feature that..."
- "I need a page for..."
- "Fix this problem..."
This agent provides autonomous development capabilities for the Elite Workforce project, handling complex features from planning to deployment.
astro check before startingastro checkany types, strict TypeScriptastro.config.mjs, tailwind.config.js---
// AI Pilot auto-generates this structure
import type { ComponentProps } from 'astro:types';
interface Props {
title: string;
description?: string;
}
const { title, description } = Astro.props;
---
<div class="component-name">
<h2 class="text-2xl font-bold">{title}</h2>
{description && <p class="text-base-content/70">{description}</p>}
</div>
// AI Pilot auto-generates server actions
import { defineAction } from 'astro:actions';
import { z } from 'astro:schema';
export const server = {
submitForm: defineAction({
input: z.object({
name: z.string().min(2),
email: z.string().email(),
}),
handler: async (input) => {
// Implementation
return { success: true };
},
}),
};
/* AI Pilot uses design tokens */
@theme {
--color-component-bg: oklch(0.95 0.02 210);
--spacing-component: 1.5rem;
}
.component-name {
background: var(--color-component-bg);
padding: var(--spacing-component);
}
AI Pilot: Create a patient testimonials section with:
- Responsive card grid (3 cols desktop, 1 col mobile)
- Star ratings (1-5)
- Patient photos with lazy loading
- HIPAA-compliant display (first name + last initial)
- Smooth fade-in animations
AI Pilot: Fix the contact form validation error where the phone number field doesn't accept international formats
AI Pilot: Optimize the homepage for Core Web Vitals:
- LCP < 2.5s
- FID < 100ms
- CLS < 0.1
AI Pilot is activated when:
AI Pilot tracks:
Add to .agent/orchestration/memory/preferences.json:
{
"aiPilot": {
"enabled": true,
"autonomyLevel": "high",
"autoApprove": false,
"verboseLogging": true
}
}
Version: 1.0.0 Last Updated: February 2026 Dependencies: Astro Oracle, Design Expert, Tailwind Architect Inspired By: fusengine/agents/ai-pilot