codemap_project_help_remove
Delete a project help topic permanently
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
topic | string | ✅ Required | Help topic name to delete |
Usage Examples
MCP Usage (for AI Agents like Claude)
json
{
"name": "codemap_project_help_remove",
"arguments": {
"topic": "old-process"
}
}Example Output
JSON Response
json
{
"success": true,
"message": "Help topic 'old-process' deleted successfully",
"topic": "old-process"
}When to Use This Tool
-
Use
- Delete outdated or obsolete documentation
- Clean up after process changes
- Remove duplicate or redundant topics
- Archive old guides no longer relevant
codemap_project_help_remove when you need to:
Common Patterns
Cleanup Pattern
1. Identify outdated topics
2. Backup content if needed
3. Remove topic
4. Update related documentationPro Tips
- Permanent deletion: Topics deleted immediately - no undo
- Check usage first: Search codebase for topic references
- Backup option: Copy content before removing if unsure
Best Practices
- Review topic content before deleting
- Notify team before removing shared documentation
- Update related topics that reference deleted content
- Document why topic was removed in commit message
Common Mistakes
❌ Mistake: Deleting topics still referenced in routines
✅ Instead: Search for topic references before removing
❌ Mistake: No backup before deletion
✅ Instead: Copy important content before removing
❌ Mistake: Deleting without team communication
✅ Instead: Notify team before removing shared documentation
✅ Instead: Search for topic references before removing
❌ Mistake: No backup before deletion
✅ Instead: Copy important content before removing
❌ Mistake: Deleting without team communication
✅ Instead: Notify team before removing shared documentation