mirror of
https://github.com/blamouche/obsidian-any-ai-code.git
synced 2026-07-22 06:53:38 +00:00
Audit-driven fixes for community-store submission:
- Add a top-level MIT LICENSE so the license is discoverable next to
the manifest and README.
- Remove leaf.detach() from onunload — the plugin guidelines
explicitly require not detaching custom-view leaves on unload so
Obsidian preserves leaf placement across reloads.
- Settings tab UI text guidelines:
- Drop the top-level plugin-name <h2> heading.
- Drop the redundant heading on the first general section
(general settings now sit at the top with no heading, per the
"Only use headings under settings if you have more than one
section" rule).
- Replace remaining <h3> elements with
new Setting(containerEl).setName(...).setHeading() so headings
inherit Obsidian's setting-heading styling.
- Release workflow now creates drafts (draft: true), matching the
official "Release your plugin with GitHub Actions" guide so the
author reviews release notes before publishing.
- Tighten manifest description to a clearer action statement that
avoids the "OpenAI" parsing ambiguity.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
10 lines
306 B
JSON
10 lines
306 B
JSON
{
|
|
"id": "obsidian-any-ai-code",
|
|
"name": "Any AI CLI",
|
|
"version": "0.1.33",
|
|
"minAppVersion": "1.5.0",
|
|
"description": "Run AI coding CLIs like Claude Code or Codex from a right sidebar terminal panel.",
|
|
"author": "Benoit Lamouche",
|
|
"authorUrl": "https://lamouche.fr",
|
|
"isDesktopOnly": true
|
|
}
|