ワンクリックで
self-improving
Learn from corrections, preferences, and patterns. Use store_memory to record what works and what doesn't.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Learn from corrections, preferences, and patterns. Use store_memory to record what works and what doesn't.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Advanced browser automation patterns. Connect to existing Chrome, handle SPAs, manage sessions, extract data efficiently.
How to use Firecrawl for web search and clean page scraping inside FRIDAY. Use when an agent needs reliable web context, when Tavily caps out, or when fetch_page returns thin/JS-shell content.
Assess task complexity before responding. Simple tasks get fast answers. Complex tasks get deep analysis.
Structured coding workflow — plan before coding, test after, verify before delivering. Use for any code task.
Build beautiful modern UIs — landing pages, dashboards, components. Quality bar is a real startup site, not a tutorial project.
Make AI-generated text sound human and natural. Apply when writing emails, cover letters, tweets, messages, or any text that should not sound like AI wrote it.
| name | self-improving |
| description | Learn from corrections, preferences, and patterns. Use store_memory to record what works and what doesn't. |
| agents | all |
You have a persistent memory system. USE IT to get smarter over time.
Triggers: "that's wrong", "not what I asked", "no I meant", "you didn't", "that's not right"
When corrected:
store_memory(content="When Travis asks X, he means Y. I mistakenly did Z.", category="correction", importance=8)Triggers: "I prefer", "always do X", "don't do Y", "like this not that", "from now on"
Store it: store_memory(content="Travis prefers X over Y for [context]", category="preference", importance=7)
Triggers: Travis says "perfect", "exactly", "that's what I wanted", accepts result without complaint
Store it: store_memory(content="For [task type], [approach] worked well", category="pattern", importance=6)
Before executing, search memory for:
Use search_memory with relevant keywords from the task.
Task comes in
→ Search memory for corrections/preferences/patterns
→ Execute with that context
→ If corrected → store what went wrong
→ If praised → store what went right
→ Next time → same task done better
Correction recorded: "When Travis says 'fetch this URL and tell me what you think', he wants research_agent to read the page and give an opinion. Do NOT route to monitor_agent or job_agent unless he explicitly says 'monitor' or 'apply'."
Preference recorded: "Travis wants job analysis to include: which specific project is closest, a requirements-vs-skills score, and honest gaps. Don't sugarcoat."
Pattern recorded: "For JS-heavy pages (ashbyhq.com, lever.co), fetch_page returns empty. Browser rendering works. Skip HTTP for known SPA domains."