소스 정보
- 저장소
- kubb-labs/fabric
- 최근 소스 활동
- 2026년 1월 27일 13:48
- 감지된 SKILL.md 언어
- 영어
- 스타
- 22
- 포크
- 3
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/kubb-labs/fabric --skill jsdoc명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | jsdoc |
| description | Guidelines for writing minimal, high-quality JSDoc comments in TypeScript. |
This skill provides simple, focused guidelines for writing JSDoc comments in TypeScript codebases.
@default, @example, @note)Write inline JSDoc comments directly above properties, focusing on what the option does rather than repeating type information.
export type Options = {
/**
* Brief description of what this property does.
* @default 'defaultValue'
*/
propertyName?: string
}
| Tag | Purpose | Example |
|---|---|---|
@default | Default value | @default 'dist' |
@example | Usage example | @example serverIndex: 0 |
@note | Important caveat | @note May change in v2 |
@deprecated | Mark as deprecated | @deprecated Use newOption instead |
| Tag | Purpose | Example |
|---|---|---|
@see | Reference docs | @see https://example.com/docs |
@internal | Internal API | @internal |
@beta | Experimental | @beta |
@param - Use TypeScript parameters@returns - Use TypeScript return type@type - Use TypeScript type annotation@typedef - Use type or interface/** Output directory for generated files. */
outDir?: string
/**
* Set a suffix for generated files.
* @default 'generated'
*/
suffix?: string
/**
* Choose output format.
* - 'type' generates type aliases
* - 'interface' generates interfaces
* @default 'type'
*/
format?: 'type' | 'interface'
/**
* Server index to use.
* @example
* - `0` returns production URL
* - `1` returns development URL
*/
serverIndex?: number
transformers?: {
/** Customize file names. */
name?: (name: string) => string
/** Customize output paths. */
path?: (path: string) => string
}
Only add JSDoc when it adds value beyond the signature:
// ✅ No JSDoc needed - signature is clear
function camelCase(str: string): string {
return str.replace(/-./g, x => x[1].toUpperCase())
}
// ✅ JSDoc adds value - explains behavior
/**
* Convert path to template string.
* @example /api/{id} => `/api/${id}`
*/
function toTemplate(path: string): string {
// implementation
}
✅ DO:
@default for default values@example for complex or non-obvious usage@note for version info or important caveats❌ DON'T:
@param or @returns tagsFor consistency, use this tag order:
@default (if applicable)@example (if helpful)@note (if needed)@deprecated (if applicable)@see (if providing references)| Skill | Use For |
|---|---|
| ../documentation/SKILL.md | Writing markdown documentation files |
| ../coding-style/SKILL.md | General coding conventions |
Use when writing blog posts or documentation markdown files - provides writing style guide (active voice, present tense), content structure patterns, and SEO optimization. Overrides brevity rules for proper grammar.
Coding style, testing, and PR guidelines for the Kubb ecosystem. Use when writing or reviewing code for the Kubb ecosystem.
Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.