Exécutez n'importe quel Skill dans Manus
en un clic
en un clic
Exécutez n'importe quel Skill dans Manus en un clic
Commencer$pwd:
$ git log --oneline --stat
stars:1 177
forks:110
updated:22 février 2026 à 12:29
SKILL.md
| 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
}
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