automation-oportunity-detection

Detect automation opportunities by mining conversation transcripts and recommending skills, hooks, or agents.

3|Updated Aug 8, 2026
One-click install
npx skills add https://github.com/Jose-Polanco-Oxte/Echos-Live-Music-Visualizer --skill automation-oportunity-detection-jose-polanco-oxte
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: automation-oportunity-detection
Source: https://github.com/Jose-Polanco-Oxte/Echos-Live-Music-Visualizer/tree/main/.agents/skills/scripting/sub-skills/automation-oportunity-detection
Command: npx skills add https://github.com/Jose-Polanco-Oxte/Echos-Live-Music-Visualizer --skill automation-oportunity-detection-jose-polanco-oxte

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Repetitive manual work often goes unnoticed because no one tracks which tasks recur across AI sessions. This Skill analyzes past conversation transcripts, clusters recurring workflow patterns into weighted knowledge, and recommends concrete automations so repetitive work becomes scripts, hooks, or agents instead of repeated effort. ## Core Features & Use Cases - Transcript Compaction: Reads transcripts from opencode, Claude Code, or Codex stores, redacts secrets with a mandatory sanitizer, and clusters observations into weighted knowledge themes. - Evidence-Based Recommendations: Applies thresholds (5+ occurrences, 3+ sessions, weight ≥ 0.2), classifies each theme as a skill, hook, or agent, and checks the existing repo ecosystem to avoid duplicates. - Bridging to Authoring: Hands accepted recommendations to the script-development skill to produce tested artifacts placed under .agents/skills/, .agents/roles/, or .agents/integrations/. - Use Case: After weeks of AI-assisted work, ask what you should automate; the Skill mines your session history, ranks the top five recurring patterns, and scaffolds the chosen one into a working skill or hook. ## Quick Start Analyze my past AI conversation transcripts and tell me which recurring tasks I should automate first.

Frequently Asked Questions about automation-oportunity-detection

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find repetitive tasks to automate from AI chat history?

Run the compact step to extract observations from conversation transcripts, cluster them into weighted themes, then run recommend to rank patterns by frequency, recency, and cross-session evidence. Themes meeting the thresholds are classified as skill, hook, or agent candidates.

What transcript sources does conversation mining support?

The plugin auto-detects the opencode SQLite database at ~/.local/share/opencode/opencode.db and also reads Claude Code and Codex transcript stores when present. It is not tied to a single AI tool.

Does transcript analysis expose API keys or secrets?

No. Every raw transcript line must pass through the vendored lib/sanitize.js redact() function before parsing or entering context. Credentials are never written to knowledge files or embedded in scaffold specs.

When does a pattern qualify for an automation recommendation?

A theme must appear at least 5 times across at least 3 distinct sessions with a computed weight of 0.2 or higher. Anything already covered by existing skills, roles, or integrations in the repo is marked as existing instead of recommended.

Does the skill create automations automatically?

No. It presents at most 5 ranked recommendations and waits for explicit user approval. Accepted recommendations are handed to the script-development skill, which authors and tests the actual script, skill, or hook.