tag_reviewed_cards
Automatically tag Anki cards with a 'reviewed on date' marker to track study progress. Specify card IDs and customize tag prefixes for organized review management.
Instructions
Add a 'reviewed on date' tag to specified cards
Input Schema
Name | Required | Description | Default |
---|---|---|---|
card_ids | Yes | Array of card IDs to tag as reviewed | |
custom_tag_prefix | No | Custom prefix for the tag (default: '見直し') |
Input Schema (JSON Schema)
{
"properties": {
"card_ids": {
"description": "Array of card IDs to tag as reviewed",
"items": {
"type": "number"
},
"type": "array"
},
"custom_tag_prefix": {
"description": "Custom prefix for the tag (default: '見直し')",
"type": "string"
}
},
"required": [
"card_ids"
],
"type": "object"
}