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
forks:0
updated:25 janvier 2026 à 10:48
SKILL.md
| name | typescript |
| description | TypeScript best practices and patterns for writing type-safe code |
| path | typescript |
Write TypeScript code following these principles:
as const satisfies for configuration objectsany - use unknown with proper type narrowing// Discriminated union for state
type Result<T, E> = { success: true; data: T } | { success: false; error: E };
// Configuration with literal types preserved
const config = {
mode: 'production',
port: 3000,
} as const satisfies Config;