mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-09 10:53:34 +08:00
docs: mark continuous-learning v1 as legacy
This commit is contained in:
@@ -351,7 +351,7 @@ everything-claude-code/
|
|||||||
| |-- market-research/ # Source-attributed market, competitor, and investor research (NEW)
|
| |-- market-research/ # Source-attributed market, competitor, and investor research (NEW)
|
||||||
| |-- investor-materials/ # Pitch decks, one-pagers, memos, and financial models (NEW)
|
| |-- investor-materials/ # Pitch decks, one-pagers, memos, and financial models (NEW)
|
||||||
| |-- investor-outreach/ # Personalized fundraising outreach and follow-up (NEW)
|
| |-- investor-outreach/ # Personalized fundraising outreach and follow-up (NEW)
|
||||||
| |-- continuous-learning/ # Auto-extract patterns from sessions (Longform Guide)
|
| |-- continuous-learning/ # Legacy v1 Stop-hook pattern extraction
|
||||||
| |-- continuous-learning-v2/ # Instinct-based learning with confidence scoring
|
| |-- continuous-learning-v2/ # Instinct-based learning with confidence scoring
|
||||||
| |-- iterative-retrieval/ # Progressive context refinement for subagents
|
| |-- iterative-retrieval/ # Progressive context refinement for subagents
|
||||||
| |-- strategic-compact/ # Manual compaction suggestions (Longform Guide)
|
| |-- strategic-compact/ # Manual compaction suggestions (Longform Guide)
|
||||||
@@ -515,7 +515,7 @@ Use the `/skill-create` command for local analysis without external services:
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
/skill-create # Analyze current repo
|
/skill-create # Analyze current repo
|
||||||
/skill-create --instincts # Also generate instincts for continuous-learning
|
/skill-create --instincts # Also generate instincts for continuous-learning-v2
|
||||||
```
|
```
|
||||||
|
|
||||||
This analyzes your git history locally and generates SKILL.md files.
|
This analyzes your git history locally and generates SKILL.md files.
|
||||||
@@ -580,6 +580,7 @@ The instinct-based learning system automatically learns your patterns:
|
|||||||
```
|
```
|
||||||
|
|
||||||
See `skills/continuous-learning-v2/` for full documentation.
|
See `skills/continuous-learning-v2/` for full documentation.
|
||||||
|
Keep `continuous-learning/` only when you explicitly want the legacy v1 Stop-hook learned-skill flow.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -358,7 +358,7 @@
|
|||||||
{
|
{
|
||||||
"id": "skill:continuous-learning",
|
"id": "skill:continuous-learning",
|
||||||
"family": "skill",
|
"family": "skill",
|
||||||
"description": "Session pattern extraction and continuous learning skill.",
|
"description": "Legacy v1 Stop-hook session pattern extraction skill; prefer continuous-learning-v2 for new installs.",
|
||||||
"modules": [
|
"modules": [
|
||||||
"workflow-quality"
|
"workflow-quality"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -197,7 +197,7 @@
|
|||||||
{
|
{
|
||||||
"id": "workflow-quality",
|
"id": "workflow-quality",
|
||||||
"kind": "skills",
|
"kind": "skills",
|
||||||
"description": "Evaluation, TDD, verification, learning, and compaction skills.",
|
"description": "Evaluation, TDD, verification, compaction, and learning skills, including the legacy continuous-learning v1 path.",
|
||||||
"paths": [
|
"paths": [
|
||||||
"skills/agent-sort",
|
"skills/agent-sort",
|
||||||
"skills/agent-introspection-debugging",
|
"skills/agent-introspection-debugging",
|
||||||
|
|||||||
@@ -139,7 +139,7 @@ For each selected category, print the full list of skills below and ask the user
|
|||||||
|
|
||||||
| Skill | Description |
|
| Skill | Description |
|
||||||
|-------|-------------|
|
|-------|-------------|
|
||||||
| `continuous-learning` | Auto-extract reusable patterns from sessions as learned skills |
|
| `continuous-learning` | Legacy v1 Stop-hook session pattern extraction; prefer `continuous-learning-v2` for new installs |
|
||||||
| `continuous-learning-v2` | Instinct-based learning with confidence scoring, evolves into skills, agents, and optional legacy command shims |
|
| `continuous-learning-v2` | Instinct-based learning with confidence scoring, evolves into skills, agents, and optional legacy command shims |
|
||||||
| `eval-harness` | Formal evaluation framework for eval-driven development (EDD) |
|
| `eval-harness` | Formal evaluation framework for eval-driven development (EDD) |
|
||||||
| `iterative-retrieval` | Progressive context refinement for subagent context problem |
|
| `iterative-retrieval` | Progressive context refinement for subagent context problem |
|
||||||
|
|||||||
@@ -80,6 +80,14 @@ function runTests() {
|
|||||||
'Should include capability:security');
|
'Should include capability:security');
|
||||||
})) passed++; else failed++;
|
})) passed++; else failed++;
|
||||||
|
|
||||||
|
if (test('labels continuous-learning as a legacy v1 install surface', () => {
|
||||||
|
const components = listInstallComponents({ family: 'skill' });
|
||||||
|
const component = components.find(entry => entry.id === 'skill:continuous-learning');
|
||||||
|
assert.ok(component, 'Should include skill:continuous-learning');
|
||||||
|
assert.match(component.description, /legacy/i, 'Should label continuous-learning as legacy');
|
||||||
|
assert.match(component.description, /continuous-learning-v2/, 'Should point new installs to continuous-learning-v2');
|
||||||
|
})) passed++; else failed++;
|
||||||
|
|
||||||
if (test('lists supported legacy compatibility languages', () => {
|
if (test('lists supported legacy compatibility languages', () => {
|
||||||
const languages = listLegacyCompatibilityLanguages();
|
const languages = listLegacyCompatibilityLanguages();
|
||||||
assert.ok(languages.includes('typescript'));
|
assert.ok(languages.includes('typescript'));
|
||||||
|
|||||||
Reference in New Issue
Block a user