Agent Skills: High-density writing style

>

UncategorizedID: rstacruz/agentic-toolkit/high-density-writing-style

Install this agent skill to your local

pnpm dlx add-skill https://github.com/rstacruz/agentic-toolkit/tree/HEAD/skill/atk-extras/high-density-writing-style

Skill Files

Browse the full folder contents for high-density-writing-style.

Download Skill

Loading file tree…

skill/atk-extras/high-density-writing-style/SKILL.md

Skill Metadata

Name
high-density-writing-style
Description
>

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