continuous-learning

Extract reusable patterns from conversations and save them as learned skills.

Updated Apr 28, 2026
One-click install
npx skills add https://github.com/phanTian2026/mobiletrading --skill continuous-learning-phantian2026
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: continuous-learning
Source: https://github.com/phanTian2026/mobiletrading/tree/main/trae/skills/continuous-learning
Command: npx skills add https://github.com/phanTian2026/mobiletrading --skill continuous-learning-phantian2026

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires jq.

What problem does it solve?

自动从会话中提炼可复用模式,并保存为可复用技能。

Core Features & Use Cases

  • 在会话结束时自动评估会话长度并提炼模式
  • 将提炼出的模式写入 skills/learned/ 以便后续复用
  • 支持多种模式类型:error_resolution、user_corrections、workarounds、debugging_techniques、project_specific

Quick Start

在会话结束时,系统将根据最小会话长度和阈值进行评估并将提取到的可复用模式保存到 skills/learned/.

Frequently Asked Questions about continuous-learning

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

FAQPage Schema
How do I extract reusable patterns from conversation transcripts automatically?

To extract reusable patterns from conversation transcripts automatically, configure a Stop hook to evaluate session length and extraction thresholds, then save identified patterns like error resolutions and debugging techniques into skills/learned/.

What types of conversation patterns can be saved as learned skills?

Conversation patterns saved as learned skills include error_resolution, user_corrections, workarounds, debugging_techniques, and project_specific patterns, which are extracted based on configured thresholds and stored for future reuse.

Do I need jq to extract learned skills from session transcripts?

Yes, you need jq installed to process the JSON data required for extracting learned skills from session transcripts, as it handles parsing the transcript available via the CLAUDE_TRANSCRIPT_PATH environment variable.

How do I configure minimum session length for pattern extraction?

You configure minimum session length and extraction thresholds by defining min_session_length and extraction_threshold parameters in a config.json file, which guides the evaluation behavior when the Stop hook triggers.

When should I use automated pattern extraction on conversation analysis?

You should use automated pattern extraction on conversation analysis when you want to capture debugging techniques and workarounds at the end of each session, provided the conversation meets the defined minimum session length criteria.

Why are extracted skills not saving to the learned skills path?

Extracted skills may not save to the learned skills path if the conversation length is below the min_session_length, the pattern score fails the extraction_threshold, or the CLAUDE_TRANSCRIPT_PATH is not properly configured.