mirror of
https://github.com/evdboom/Bindery.git
synced 2026-07-22 06:49:36 +00:00
Merge branch 'main' into dependabot/github_actions/peter-evans/create-pull-request-8
This commit is contained in:
commit
90f3e418d4
1 changed files with 2 additions and 2 deletions
|
|
@ -318,12 +318,12 @@ export default class BinderyPlugin extends Plugin {
|
|||
}
|
||||
}
|
||||
|
||||
private async setupAiCommand(): Promise<void> {
|
||||
private setupAiCommand(): void {
|
||||
try {
|
||||
const vaultPath = this.getVaultBasePath();
|
||||
const bookRoot = resolveBookRoot(vaultPath, this.settings.bookRoot);
|
||||
|
||||
const result = await setupAiFiles(this.app, bookRoot, ['claude', 'copilot', 'cursor', 'agents'], ALL_SKILLS, false);
|
||||
const result = setupAiFiles(this.app, bookRoot, ['claude', 'copilot', 'cursor', 'agents'], ALL_SKILLS, false);
|
||||
const msg = `Generated: ${result.created.length}, Skipped: ${result.skipped.length}`;
|
||||
this.notify(`AI setup complete. ${msg}`);
|
||||
} catch (err) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue