Back to list
vuralserhat86

docs-code

by vuralserhat86

OS for Agents: 130+ Agentic Skills, Gemini Protocols, and Autonomous Workflows. (Antigravity System)

19🍴 9📅 Jan 23, 2026

SKILL.md


name: docs_code router_kit: ManagementKit description: Code comments, JSDoc/TSDoc ve changelog best practices. metadata: skillport: category: operations tags: [architecture, automation, best practices, clean code, coding, collaboration, compliance, debugging, design patterns, development, docs code, documentation, efficiency, git, optimization, productivity, programming, project management, quality assurance, refactoring, software engineering, standards, testing, utilities, version control, workflow] - docs-api

💻 Docs Code

Code documentation ve changelog best practices.


📝 JSDoc/TSDoc

/**
 * Calculates total price including tax.
 * 
 * @param amount - Base amount before tax
 * @param taxRate - Tax rate as decimal (0.18 = 18%)
 * @returns Total amount including tax
 * 
 * @example
 * const total = calculateTotal(100, 0.18); // 118
 */
function calculateTotal(amount: number, taxRate: number): number {
  return amount * (1 + taxRate);
}

✅ Comment Best Practices

// ❌ What (kod zaten söylüyor)
// Increment counter by 1
counter++;

// ✅ Why (neden böyle yapıldığını açıklıyor)
// Using setTimeout to debounce API calls
setTimeout(() => saveChanges(), 500);

// ✅ Business logic
// Premium users get 20% discount (JIRA-1234)
if (user.isPremium) discount = 0.20;

📋 Changelog (Keep a Changelog)

## [1.2.0] - 2025-01-15

### Added
- OAuth2 authentication

### Fixed
- Login button on mobile

### Security
- Patched XSS vulnerability

🔗 Conventional Commits

feat(auth): add Google OAuth
fix(api): handle null response
docs(readme): add installation
refactor(utils): simplify logic

Docs Code v1.1 - Enhanced

🔄 Workflow

Kaynak: TSDoc Standard & Keep a Changelog

Aşama 1: Inline Documentation

  • Public API: Export edilen her fonksiyon/class için TSDoc (/** ... */) yaz.
  • Context: "Neden" (Why) sorusunu cevaplayan yorumlar ekle (// Optimize for ...).
  • Examples: Karmaşık fonksiyonlar için @example bloğu ekle.

Aşama 2: Changelog Management

  • Unreleased: Yapılan değişiklikleri anında [Unreleased] başlığı altına ekle.
  • Categories: Added, Changed, Deprecated, Removed, Fixed, Security etiketlerini kullan.
  • Versioning: SemVer (Maj.Min.Patch) kurallarına göre versiyonla.

Aşama 3: Commit Standards

  • Format: Conventional Commits (feat:, fix:, docs:) kullan.
  • Scope: Değişikliğin kapsamını belirt (feat(auth):).

Kontrol Noktaları

AşamaDoğrulama
1IDE'de fonksiyon üzerine gelince TSDoc çıkıyor mu?
2Changelog'da tarih formatı ISO 8601 (YYYY-MM-DD) mi?
3Commit mesajı "ne" ve "neden" sorularını cevaplıyor mu?

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

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

+20
LICENSE

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

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

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

0/5
Issue管理

オープンIssueが50未満

+5
言語

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

+5
タグ

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

0/5

Reviews

💬

Reviews coming soon