codemap_routine_remove_help

Remove a help topic reference from a routine

routinehelpdocumentationremove

Parameters

NameTypeRequiredDescription
routineNamestring✅ RequiredRoutine name
topicNamestring✅ RequiredHelp 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 codemap_routine_remove_help when you need to:
  • Remove outdated help topic references
  • Clean up routine configuration
  • Update routine documentation links
💡Common Patterns
Documentation Update Pattern
1. Remove old help topic
2. Add updated help topic
3. Test routine
💡Pro Tips
  • Universal remove tool: routine_remove can 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

Related Tools