ワンクリックで
documentation
Generate and update technical documentation
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Generate and update technical documentation
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Design RESTful APIs following best practices
Systematic bug investigation and root cause analysis
Review code quality, patterns, and best practices
Generate commit messages following conventional commits with scope detection
Break down features into implementable tasks
Review pull requests against team standards and best practices
| type | skill |
| name | Documentation |
| description | Generate and update technical documentation |
| skillSlug | documentation |
| phases | ["P","C"] |
| generated | "2026-02-08T00:00:00.000Z" |
| status | filled |
| scaffoldVersion | 2.0.0 |
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)