在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
$ git log --oneline --stat
stars:1,177
forks:110
updated:2026年2月22日 12:29
SKILL.md
General repo context and behavior guidelines
Skill: chat-context
General repo context and behavior guidelines
Documentation review and fix workflow for MDX files
Skill: lazy-prefetch-pattern
Skill: react
| name | typescript |
| description | Skill: typescript |
any at all cost. The types should work or they indicate a problem.as "any" or as unknown as to solve/avoid type errors. The types should work or they indicate a problem.as to cast to a specific type. The types should work or they indicate a problem.export function processData({
id,
name,
options,
}: {
id: string;
name: string;
options: ProcessingOptions;
}): ProcessedResult {
// implementation
}
interface ProcessDataProps {
id: string;
name: string;
options: ProcessingOptions;
}
export function processDAta({
id,
name,
options,
}: ProcessDataProps): ProcessResult {
// Implementation
}