تشغيل أي مهارة في Manus
بنقرة واحدة
بنقرة واحدة
تشغيل أي مهارة في Manus بنقرة واحدة
ابدأ الآن$pwd:
$ git log --oneline --stat
stars:١٬١٧٧
forks:١١٠
updated:٢٢ فبراير ٢٠٢٦ في ١٢:٢٩
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
}