Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

MIGRATION NOTES

ASecurity

Knowledge Processing Architecture Migration Notes

8 stars
0 votes
0 copies
0 views
Added 9/20/2026
researchbashdocumentation

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add tstapler/dotfiles --skill MIGRATION_NOTES --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of MIGRATION NOTES?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for MIGRATION NOTES
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/tstapler-migration-notes/badge)](https://www.skillsdirectory.com/skills/tstapler-migration-notes)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
description: Knowledge Processing Architecture Migration Notes
---

# Knowledge Processing Architecture Migration Notes

## Migration from: One Command Per Tag
## Migration to: Single Orchestrator + Handler Skills

**Migration Date**: 2026-01-07

---

## Summary of Changes

### Before (Legacy Architecture)
```
.claude/commands/knowledge/
├── process-needs-synthesis.md      # Full command
├── process-needs-research.md       # Full command
├── process-needs-handy-plan.md     # Full command
└── process-book-recommendations.md # Full command
```

Each command was:
- Independently invocable
- Self-contained (discovery, processing, cleanup, reporting)
- No shared logic between commands
- Separate progress reporting

### After (New Architecture)
```
.claude/commands/knowledge/
└── enrich.md                       # Single orchestrator command

.claude/skills/knowledge/handlers/
├── synthesis-handler.md            # Domain-specific processing
├── research-handler.md             # Domain-specific processing
├── handy-plan-handler.md           # Domain-specific processing
└── book-recommendation-handler.md  # Domain-specific processing
```

The new architecture provides:
- Single entry point for all tag processing
- Shared discovery, cleanup, and reporting logic
- Specialized handlers for domain-specific processing
- Consistent behavior across all tag types

---

## Command Mapping

| Old Command | New Command |
|-------------|-------------|
| `/knowledge/process-needs-synthesis` | `/knowledge/enrich --only synthesis` |
| `/knowledge/process-needs-research` | `/knowledge/enrich --only research` |
| `/knowledge/process-needs-handy-plan` | `/knowledge/enrich --only handy-plan` |
| `/knowledge/process-book-recommendations` | `/knowledge/enrich --only book` |
| (all four sequentially) | `/knowledge/enrich` |

---

## Migration Steps

### Immediate Actions (Already Complete)

1. **Created orchestrator command**: `/knowledge/enrich.md`
2. **Created handler skills**: Four handler files in `.claude/skills/knowledge/handlers/`
3. **Updated architecture documentation**: `KNOWLEDGE_PROCESSING_ARCHITECTURE.md`
4. **Legacy commands preserved**: Old commands still work for backward compatibility

### User Actions Required

**None required** - the migration is backward compatible. Both old and new commands work.

### Recommended Transition

1. **Start using `/knowledge/enrich`** for new processing
2. **Keep legacy commands available** during transition period
3. **After 30 days of successful usage**, consider deprecating legacy commands
4. **Update any scripts or aliases** that reference old commands

---

## Behavior Differences

### Discovery Phase
- **Before**: Each command scanned only for its specific tag
- **After**: Orchestrator scans for ALL tags in one pass

### Tag Cleanup
- **Before**: Each command had slightly different transformation patterns
- **After**: Consistent transformation format across all tag types

### Error Handling
- **Before**: Errors in one command didn't affect others
- **After**: Errors are accumulated, processing continues, unified error report

### Reporting
- **Before**: Each command produced its own report
- **After**: Single comprehensive report covering all processed tags

---

## Files Created

### New Files
```
.claude/commands/knowledge/enrich.md
.claude/skills/knowledge/handlers/synthesis-handler.md
.claude/skills/knowledge/handlers/research-handler.md
.claude/skills/knowledge/handlers/handy-plan-handler.md
.claude/skills/knowledge/handlers/book-recommendation-handler.md
.claude/commands/knowledge/MIGRATION_NOTES.md  (this file)
```

### Updated Files
```
.claude/commands/knowledge/KNOWLEDGE_PROCESSING_ARCHITECTURE.md
```

### Unchanged Files (Legacy Commands)
```
.claude/commands/knowledge/process-needs-synthesis.md
.claude/commands/knowledge/process-needs-research.md
.claude/commands/knowledge/process-needs-handy-plan.md
.claude/commands/knowledge/process-book-recommendations.md
```

---

## Rollback Plan

If issues are encountered with the new architecture:

1. **Continue using legacy commands** - they still work
2. **Report issues** for fixing
3. **Legacy commands will remain** until new architecture is proven

No data migration is required - both architectures work with the same:
- Journal entries and tags
- Wiki page structure
- Book-sync storage format

---

## Future Deprecation Timeline

| Date | Action |
|------|--------|
| 2026-01-07 | New architecture deployed |
| 2026-02-07 | Evaluate usage patterns |
| 2026-03-07 | Add deprecation notices to legacy commands |
| 2026-04-07 | Consider removal of legacy commands |

---

## FAQ

### Can I still use the old commands?
**Yes.** Legacy commands are preserved and functional. Use them if you prefer or encounter issues with the new orchestrator.

### Do I need to change my workflows?
**No.** Existing workflows using legacy commands continue to work. Transition to `/knowledge/enrich` at your convenience.

### What if I have custom scripts calling old commands?
**They still work.** Update scripts at your convenience. The old commands remain available.

### How do I process just one tag type with the new system?
Use the `--only` filter:
```bash
/knowledge/enrich --only synthesis
/knowledge/enrich --only research
/knowledge/enrich --only handy-plan
/knowledge/enrich --only book
```

### What about the `/knowledge/maintain` command?
It remains unchanged and can be updated to use `/knowledge/enrich` internally if desired.

---

## Technical Notes

### Handler Skill Loading
Handler skills are read by the orchestrator and applied to entries. They are NOT directly invocable commands - they provide domain knowledge that the orchestrator uses.

### Handler Contract
Each handler receives:
- Entry content and context
- Journal date and line number
- Priority assessment

Each handler returns:
- Processing status
- Pages created/updated
- Issues encountered

### Orchestrator Responsibilities
- Tag discovery across all types
- Handler invocation for processing
- Consistent tag cleanup
- Unified progress reporting
- Error accumulation and reporting

---

## Questions or Issues?

If you encounter problems with the migration:

1. **Use legacy commands** as a fallback
2. **Document the issue** with specific error messages
3. **Check handler skills** for missing or incorrect logic
4. **Verify file paths** in handlers match your system

Attribution

tstaplertstapler
View sourceMore from tstapler →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Competitor Analysis

This skill provides comprehensive analysis of competitor SEO and GEO strategies, revealing what's working in your market and identifying opportunities to outperform the competition.

1823 votes

Deep Research

Universal deep research agent team. 13-agent pipeline for rigorous academic research on any topic. 7 modes: full research, quick brief, paper review, lit-review, fact-check, Socratic guided research dialogue, and systematic review with optional meta-analysis. Covers research question formulation, Socratic mentoring, methodology design, systematic literature search, source verification, cross-source synthesis, risk of bias assessment, meta-analysis, APA 7.0 report compilation, editorial review...

452202 votes

Paperclip Distill

Use when an operation issue is a Paperclip cursor-window, distill, or backfill — `operationType: "distill"` or `"backfill"` and the body references a Paperclip source bundle for a project or root issue. Turn raw Paperclip activity into a wiki-insightful project page, decisions log, and history note. This skill exists specifically to replace the stiff, datestamp-heavy templated output that the deterministic distiller produces.

805541 votes

Academic Pipeline

Orchestrator for the full academic research pipeline: research -> write -> integrity check -> review -> revise -> re-review -> re-revise -> final integrity check -> finalize. Coordinates deep-research, academic-paper, and academic-paper-reviewer into a seamless 10-stage workflow with mandatory integrity verification, two-stage peer review, and reproducible quality gates. Triggers on: academic pipeline, research to paper, full paper workflow, paper pipeline, end-to-end paper, research-to-publi...

452201 votes

Exa Search

Semantic search, similar content discovery, and structured research using Exa API

304951 votes
View all in research →