docs/internal/SKILL.md
--- name: adhd-productivity-app description: ADHD kullanıcıları için keyboard-first, retro Notepad++ estetiğinde productivity super app geliştirme skill'i. Notes, Habits, Tasks, Journal modülleri ve AI-powered haftalık analiz özelliği içerir. Bu skill'i kullan: (1) ADHD productivity app oluştururken, (2) Retro/Notepad++ tarzı UI yaparken, (3) Keyboard-first uygulamalar geliştirirken, (4) AI-powered self-improvement araçları yaparken. --- # ADHD Productivity Super App Development Skill ## Proje
npx skillsauth add samitugal/bytepad docs/internalInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Notepad++ estetiğinde, keyboard-first, retro görünümlü ama modern AI özellikleriyle donatılmış bir productivity super app.
Her action keyboard ile yapılabilmeli. Mouse opsiyonel.
const CORE_SHORTCUTS = {
'Ctrl+K': 'Command Palette (en önemli)',
'Ctrl+1-5': 'Module navigation',
'Ctrl+N': 'New item',
'Ctrl+S': 'Save',
'Escape': 'Cancel/Close',
'Space': 'Toggle (tasks/habits)',
};
Notepad++ koyu teması, monospace font, minimal dekorasyon.
:root {
--bg-primary: #1E1E1E;
--bg-secondary: #252526;
--text-primary: #D4D4D4;
--accent-blue: #569CD6;
--accent-green: #6A9955;
--font-mono: 'JetBrains Mono', 'Consolas', monospace;
}
LocalStorage + IndexedDB. İnternet gerektirmez (AI hariç).
{
"compilerOptions": {
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true
}
}
// Minimal, focused components
interface Props {
// Explicit types, no any
}
export function Component({ prop }: Props) {
// Hooks at top
// Event handlers
// Early returns
// Clean JSX
}
Zustand ile basit store'lar:
interface NoteStore {
notes: Note[];
activeNoteId: string | null;
addNote: (note: Note) => void;
updateNote: (id: string, updates: Partial<Note>) => void;
deleteNote: (id: string) => void;
}
┌─────────────────────────────────────────────┐
│ Menu Bar [_][□][X] │
├────────┬────────────────────────────────────┤
│Sidebar │ Tab Bar: [Notes][Habits][Tasks][+] │
│ ├────────────────────────────────────│
│> Notes │ │
│> Habits│ Main Content Area │
│> Tasks │ │
│> Jrnl │ │
│────────│ │
│Analyze │ │
├────────┴────────────────────────────────────┤
│ Status: Ln 1, Col 0 | 3/5 habits done ✓ │
└─────────────────────────────────────────────┘
--accent-green: Success, completed items--accent-orange: Warnings, deadlines--accent-blue: Links, active states--accent-purple: Keywords, tagsADHD koçu rolünde haftalık analiz yap.
Veriler:
- Habit completion: {{rate}}%
- Tasks: {{done}}/{{total}}
- Avg mood: {{mood}}/5
- Avg energy: {{energy}}/5
Çıktı:
1. 3 pozitif nokta
2. 2 dikkat alanı
3. 3 pratik öneri (küçük adımlar)
4. Motivasyonel kapanış
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.
development
Run, watch, debug, and extend OpenClaw QA testing with qa-lab and qa-channel. Use when Codex needs to execute the repo-backed QA suite, inspect live QA artifacts, debug failing scenarios, add new QA scenarios, or explain the OpenClaw QA workflow. Prefer the live OpenAI lane with regular openai/gpt-5.4 in fast mode; do not use gpt-5.4-pro or gpt-5.4-mini unless the user explicitly overrides that policy.
development
End-to-end Parallels smoke, upgrade, and rerun workflow for OpenClaw across macOS, Windows, and Linux guests. Use when Codex needs to run, rerun, debug, or interpret VM-based install, onboarding, gateway smoke tests, latest-release-to-main upgrade checks, fresh snapshot retests, or optional Discord roundtrip verification under Parallels.