apps/chat/.cursor/skills/typescript/SKILL.md
Skill: typescript
npx skillsauth add masonjames/sparka typescriptInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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
}
documentation
Documentation review and fix workflow for MDX files
documentation
Documentation review and fix workflow for MDX files
testing
Skill: ultracite
tools
Skill: trpc-patterns