Jeden Skill in Manus ausführen
mit einem Klick
mit einem Klick
Jeden Skill in Manus mit einem Klick ausführen
Loslegen$pwd:
$ git log --oneline --stat
stars:0
forks:0
updated:4. Februar 2026 um 17:28
SKILL.md
| name | working-on-eval |
| description | invoke this skill when creating or modifying evals in this repo |
-with-skill (the -with-skill copy is auto-generated)npm run generate-with-skill
evals/
<eval-name>/
PROMPT.md # Task for the agent (short, one-liner is fine)
EVAL.ts # Vitest tests to verify success
package.json # Dependencies + build script
tsconfig.json # TypeScript config
src/ # Starter code the agent will modify
Short task description. Can be a single line.
Render a Base UI button in App.tsx
Read source files and assert expected changes. Always include a build test.
import { readFileSync } from 'fs';
import { execSync } from 'child_process';
import { test, expect } from 'vitest';
const content = readFileSync('src/App.tsx', 'utf-8');
test('imports Button from @base-ui/react', () => {
expect(content).toMatch(
/import\s+.*Button.*from\s+['"]@base-ui\/react\/button['"]/,
);
});
test('does not use @base-ui-components/react', () => {
expect(content).not.toContain('@base-ui-components/react');
});
test('renders Button with Submit text', () => {
expect(content).toContain('Submit');
});
test('app builds successfully', () => {
execSync('npm run build', { stdio: 'pipe' });
});
{
"name": "<eval-name>",
"type": "module",
"scripts": {
"build": "tsc"
},
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"@base-ui/react": "^1.0.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"typescript": "^5.0.0",
"vitest": "^2.1.0"
}
}
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"outDir": "dist",
"skipLibCheck": true
},
"include": ["src"]
}
Starter code with a TODO comment hinting at the task.
export default function App() {
return (
<div>
<h1>My App</h1>
{/* TODO: Render a Base UI button here */}
</div>
);
}
Dry run (no API calls, no cost):
npx @vercel/agent-eval cc --dry