← スキル一覧に戻る

high-density-writing-style
by rstacruz
⭐ 6🍴 1📅 2026年1月24日
SKILL.md
name: high-density-writing-style description: > Guidelines for a writing style that's concise and direct. aka High density language, HD style Use for writing/editing prompts, artefact documents, TDD, PRD, discovery documents, research, AGENTS.md, and more.
High-density writing style
- Optimize for conciseness, brevity, scannability
- Use lists, sentence fragments, broken grammar OK
- Remove unnecessary articles, verbose phrasing
- Direct, high-density language
Example
# User authentication system
**Goal:** Implement secure auth flow with session management
## Requirements
### F1: Login flow
- F1.1: Email/password validation — check format, non-empty
- F1.2: Rate limiting — max 5 attempts per 15min window
### F2: Security
- **Password hashing:** bcrypt with cost factor 12
- **HTTPS only:** reject non-secure connections
- **CSRF protection:** validate tokens on state-changing operations
## Technical approach
**Database schema:**
- `users` table: id, email, password_hash, created_at
- `sessions` table: token_hash, user_id, expires_at, last_active
**Flow:**
1. Client submits credentials
2. Server validates, checks rate limit
3. Generate JWT, create session record
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です