## New Skill: transcript-fixer v1.0.0 Correct speech-to-text (ASR/STT) transcription errors through dictionary-based rules and AI-powered corrections with automatic pattern learning. **Features:** - Two-stage correction pipeline (dictionary + AI) - Automatic pattern detection and learning - Domain-specific dictionaries (general, embodied_ai, finance, medical) - SQLite-based correction repository - Team collaboration with import/export - GLM API integration for AI corrections - Cost optimization through dictionary promotion **Use cases:** - Correcting meeting notes, lecture recordings, or interview transcripts - Fixing Chinese/English homophone errors and technical terminology - Building domain-specific correction dictionaries - Improving transcript accuracy through iterative learning **Documentation:** - Complete workflow guides in references/ - SQL query templates - Troubleshooting guide - Team collaboration patterns - API setup instructions **Marketplace updates:** - Updated marketplace to v1.8.0 - Added transcript-fixer plugin (category: productivity) - Updated README.md with skill description and use cases - Updated CLAUDE.md with skill listing and counts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
30 lines
638 B
Python
30 lines
638 B
Python
"""
|
|
CLI Module - Command-Line Interface Handlers
|
|
|
|
This module contains command handlers and argument parsing:
|
|
- commands: Command handler functions (cmd_*)
|
|
- argument_parser: CLI argument configuration
|
|
"""
|
|
|
|
from .commands import (
|
|
cmd_init,
|
|
cmd_add_correction,
|
|
cmd_list_corrections,
|
|
cmd_run_correction,
|
|
cmd_review_learned,
|
|
cmd_approve,
|
|
cmd_validate,
|
|
)
|
|
from .argument_parser import create_argument_parser
|
|
|
|
__all__ = [
|
|
'cmd_init',
|
|
'cmd_add_correction',
|
|
'cmd_list_corrections',
|
|
'cmd_run_correction',
|
|
'cmd_review_learned',
|
|
'cmd_approve',
|
|
'cmd_validate',
|
|
'create_argument_parser',
|
|
]
|