api-and-interface-desi…
Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints,…
User ryzen's workflow preferences, communication style, and anti-patterns to avoid
$ npx -y skills add kevinnft/ai-agent-skills --skill user-ryzen-preferences --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/user-ryzen-preferencesContext preview
The summary Claude sees to decide when to auto-load this skill.
User ryzen's workflow preferences, communication style, and anti-patterns to avoid
name: user-ryzen-preferences
description: "User ryzen's workflow preferences, communication style, and anti-patterns to avoid"
version: 1.0.0
author: Hermes Agent
license: MIT
metadata:
hermes:
tags: [user-preferences, workflow, communication, ryzen]
related_skills: []
origin: original
source_repo: kevinnft/ai-agent-skills
source_url: https://github.com/kevinnft/ai-agent-skills
source_license: MIT
language: enWorkflow preferences and communication style for user `ryzen` (kevinnft GitHub account).
**File/Asset Review Pattern:** Don't send actual files immediately for review. Create analysis document or issue list first, wait for approval, then create/send files. See `references/review-workflow.md` for detailed pattern.
**Response expectations:**
**❌ WRONG:**
User: "Gas hapus" Agent: "Are you sure? This will delete X. Type YES to confirm."
**✅ CORRECT:**
User: "Gas hapus" Agent: [executes immediately]
**Rule:** When user says "gas" or gives explicit instruction, execute immediately. The initial command IS the confirmation.
Only ask for confirmation when:
**Format for high-risk confirmation:**
Agent: "⚠️ This will permanently delete 13 repos. Type 'GAS HAPUS' to confirm." User: "Gas hapus" Agent: [executes]
**User expectation:** "Lo langsung buat token aja, kerjain semuannya sendiri jngn kbanyakan nanya"
**Translation:** Automate as much as possible. Don't ask for manual steps when automation is feasible.
**❌ WRONG:**
Agent: "Generate token at this URL, then paste it here"
**✅ CORRECT:**
Agent: "I can't generate the token (requires your GitHub login), but here's the direct link with pre-filled scopes: [URL]" Agent: "After you generate it, paste here and I'll handle the rest automatically"
**Preference:** Permanent tokens over session-based auth
**Pattern:**
# Save to bashrc echo "export GH_TOKEN='TOKEN'" >> ~/.bashrc # Store in Mnemosyne mnemosyne_remember( content="GitHub permanent token: TOKEN (scopes: repo, delete_repo, ...)", importance=0.9, source="credential" )
**Critical:** User has ZERO tolerance for heavy tools on VPS
**Preferred tools:**
**Scope awareness:**
1. **Over-explaining obvious steps**
2. **Asking for confirmation after "gas"**
3. **Suggesting manual steps when automation exists**
4. **Verbose status updates**
5. **Apologizing unnecessarily**
**Discovery:** `delete_repo` scope is separate from `repo` scope
**User frustration:** "Lo kan udh login github masa gak bisa" — Expected authenticated session to have all permissions
**Lesson:** Always check scope requirements before GitHub operations. Pre-emptively request all needed scopes.
**Scope reference:**
**Recommended for full access:** `repo,delete_repo,admin:org,workflow,gist`
**Token generation workflow:** 1. Provide direct link with pre-filled scopes (minimize manual work) 2. Explain why manual step needed (security/login required) 3. Automate everything after token provided
**Discovery:** Working Copy requires $19.99 for push to private repos
**User frustration:** "Bayar anjir working copy untuk push, ngapa lo saranin ini lol"
**Lesson:** Always present free alternatives FIRST
**An
191 attribution-first agent skills for Hermes Agent, Claude Code, Cursor — one installer, 28 categories, searchable catalog. See NOTICE for upstream attribution.
Repo: kevinnft/ai-agent-skills
Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints,…
Tests in real browsers. Use when building or debugging anything that runs in a browser. Use when you need to inspect the DOM, capture console errors, analyze…
Automates CI/CD pipeline setup. Use when setting up or modifying build and deployment pipelines. Use when you need to automate quality gates, configure test…
Conducts multi-axis code review. Use before merging any change. Use when reviewing code written by yourself, another agent, or a human. Use when you need to…
Simplifies code for clarity. Use when refactoring code for clarity without changing behavior. Use when code works but is harder to read, maintain, or extend…
Optimizes agent context setup. Use when starting a new session, when agent output quality degrades, when switching between tasks, or when you need to configure…