···30303131Before using the plugin, you need to configure your Claude API key:
32323333-1. Get a Claude API key from [Anthropic](https://www.anthropic.com/)
3333+1. Get a Claude API key from [Anthropic's Console](https://console.anthropic.com/)
34342. In Obsidian, go to Settings > Claude AI Tagger
35353. Enter your API key in the appropriate field
36364. Configure other settings as desired
···88888989If you encounter any issues or have suggestions, please create an issue on the GitHub repository.
90909191-## License
9191+## Say Thank You
9292+9393+If you are enjoying my plugin, then please support my work by buying me a coffee at <https://buymeacoffee.com/jaspermayone> or sponsoring me on github using the button below.
9494+9595+Please also help spread the word by sharing about the plugin on Twitter, Reddit,
9696+or any other social media platform you regularly use.
9797+9898+<iframe src="https://github.com/sponsors/jaspermayone/card" title="Sponsor jaspermayone" height="225" width="600" style="border: 0;"></iframe>
92999393-This plugin is licensed under the MIT License.
100100+[<img style="float:left" src="hhttps://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" width="200">](https://www.buymeacoffee.com/jaspermayone)
+3-1
main.ts
···377377378378 new Setting(containerEl)
379379 .setName("API Key")
380380- .setDesc("Your Anthropic API key. Required to use the AI service.")
380380+ .setDesc(
381381+ "Your Anthropic API key. Required to use the AI service. Get it from https://console.anthropic.com/ if you don't have one already. We recommend using a dedicated key for this plugin."
382382+ )
381383 .addText((text) =>
382384 text
383385 .setPlaceholder("Enter your API key")
+10-6
manifest.json
···11{
22- "id": "ai-tagger",
33- "name": "AI Tagger",
22+ "id": "ai-note-tagger",
33+ "name": "AI Note Tagger",
44 "version": "1.0.0",
55 "minAppVersion": "0.15.0",
66 "description": "Automatically tag your notes using AI and update frontmatter with generated tags.",
77- "author": "Your Name",
88- "authorUrl": "https://github.com/yourusername",
99- "isDesktopOnly": false
1010-}
77+ "author": "Jasper Mayone",
88+ "authorUrl": "https://github.com/jaspermayone",
99+ "isDesktopOnly": false,
1010+ "fundingUrl": {
1111+ "Buy Me a Coffee": "https://buymeacoffee.com/jaspermayone",
1212+ "GitHub Sponsor": "https://github.com/sponsors/jaspermayone"
1313+ }
1414+}