codemap_routine_remove_help
Remove a help topic reference from a routine
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
routineName | string | ✅ Required | Routine name |
topicName | string | ✅ Required | Help topic name to remove |
Usage Examples
MCP Usage (for AI Agents like Claude)
json
{
"name": "codemap_routine_remove_help",
"arguments": {
"routineName": "pre-publish",
"topicName": "old-docs"
}
}Example Output
JSON Response
json
{
"success": true,
"message": "Help topic 'old-docs' removed from routine 'pre-publish'"
}When to Use This Tool
-
Use
- Remove outdated help topic references
- Clean up routine configuration
- Update routine documentation links
codemap_routine_remove_help when you need to:
Common Patterns
Documentation Update Pattern
1. Remove old help topic
2. Add updated help topic
3. Test routinePro Tips
- Universal remove tool:
routine_removecan also remove help topics - Check first: List routine to verify topic exists
Best Practices
- Verify topic name before removing
- Update routine if help was critical to understanding workflow
- Test routine after changes
Common Mistakes
❌ Mistake: Removing help for complex steps without replacement
✅ Instead: Add updated help before removing old references
✅ Instead: Add updated help before removing old references