소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 7월 3일 19:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill documentation명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | documentation |
| description | Generate and update technical documentation Use when this capability is needed. |
| metadata | {"author":"CtrI-Alt-Del"} |
Use this skill when creating or updating documentation for the Smart Farming project. This covers inline code documentation, architecture docs, sprint reports, and context files.
| Type | Location | Format |
|---|---|---|
| Project README | README.md | Markdown (Portuguese) |
| Architecture | documentation/development/archtecture.md | Markdown |
| Design guidelines | documentation/development/design.md | Markdown |
| Commit conventions | documentation/development/commits-emoji-table.md | Markdown |
| Sprint reports | documentation/reports/sprint-{n}.md | Markdown |
| Context docs | .context/docs/ | Markdown with frontmatter |
| Agent playbooks | .context/agents/ | Markdown with frontmatter |
Use docstrings for complex use cases and public methods:
class CreateSensorRecord:
"""Creates a new sensor record from form or CSV data.
Dependencies:
repository: SensorsRecordsRepository interface
plants_repository: PlantsRepository interface
"""
def execute(self, data: dict) -> SensorRecord:
"""Execute the use case.
Args:
data: Dictionary with sensor values (soil_humidity, temperature, etc.)
Returns:
The created SensorRecord entity
Raises:
InvalidSensorDataError: If required fields are missing or invalid
"""
Add comments for complex Jinja2 template logic:
{# Dashboard chart container - receives data via HTMX partial update #}
<div id="temperature-chart"
hx-get="/sensors-records/chart/temperature"
hx-trigger="load">
</div>
Comment complex queries in repository implementations:
def find_by_date_range(self, start_date, end_date):
"""Fetch records between two dates, ordered by creation date descending."""
query = f"""
SELECT * FROM {SENSORS_RECORDS_TABLE['name']}
WHERE created_at BETWEEN %s AND %s
ORDER BY created_at DESC
"""
When modifying code:
.context/docs/ if workflows or tooling changed# Sprint {N} Report
## Period
DD/MM/YYYY - DD/MM/YYYY
## Completed
- (list of completed user stories/tasks)
## Burndown Chart

## Challenges
- (issues encountered)
## Next Sprint
- (planned work)
Source: CtrI-Alt-Del/smart-farming — distributed by TomeVault.