在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用new-page
星标4
分支0
更新时间2026年2月2日 21:34
Create a new Astro page with the standard layout
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Create a new Astro page with the standard layout
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Build the Tauri desktop application for production
Run the production build for the web application
Start the Tauri desktop application in development mode with hot reload
Start the Astro development server for web development
Create a new Astro component with TypeScript props
Perform a comprehensive code review of recent changes
| name | new-page |
| description | Create a new Astro page with the standard layout |
| argument-hint | <page-path> |
Create a new page at path $ARGUMENTS.
Create the page file at src/pages/$ARGUMENTS.astro
Use this template:
---
import Layout from '../layouts/Layout.astro';
// Adjust import path based on page depth
---
<Layout title="Page Title" description="Page description for SEO">
<main class="container mx-auto px-4 py-8">
<h1 class="text-2xl font-bold mb-6">Page Title</h1>
<section>
<!-- Page content -->
</section>
</main>
</Layout>
Add navigation link if needed (header or relevant navigation)
Run build to verify: npm run build