Ejecuta cualquier Skill en Manus
con un clic
con un clic
Ejecuta cualquier Skill en Manus con un clic
Comenzar$pwd:
$ git log --oneline --stat
stars:1177
forks:110
updated:22 de febrero de 2026, 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
}