Back to list
simple-platform

documentation

by simple-platform

Simple Platform Tools

1🍴 1📅 Jan 25, 2026

SKILL.md


name: documentation description: Guide to writing accessible, maintainable, and "evolution-ready" documentation.

Documentation Skill

1. The "why", not just the "what"

  • Bad: // Sets i to 0 (Redundant)
  • Good: // Initialize counter to reset retry logic (Intent)

2. README.md Structure

Every app and complex component needs a README.

Template

# [Name]

[One line pitch: What does this do?]

## Overview
[Architecture diagram or explanation of the data flow]

## Setup / Installation
[Prerequisites and commands]

## Usage
[Examples of common tasks]

## Key Concepts
*   **Concept A:** ...
*   **Concept B:** ...

3. SCL Documentation

Explain the business validation behind the schema.

table order {
  # We use a decimal with 4 digits precision to handle
  # fractional crypto-currency amounts, not just USD.
  required amount, :decimal {
    digits 18
    decimals 8
  }
}

4. Code Comments (JS/TS)

Use JSDoc to document the "Contract" of functions.

/**
 * Calculates the final price including tax and discounts.
 * 
 * @param basePrice - The catalog price
 * @param userRegion - Used to determine tax rate (e.g. EU vs US)
 * @returns Final amount in cents
 */
export function calculateTotal(basePrice: number, userRegion: string): number { ... }

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon