init
This commit is contained in:
commit
ec53fcbe95
1905 changed files with 513762 additions and 0 deletions
16
commands/stickers/stickers.ts
Normal file
16
commands/stickers/stickers.ts
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import type { LocalCommandResult } from '../../types/command.js'
|
||||
import { openBrowser } from '../../utils/browser.js'
|
||||
|
||||
export async function call(): Promise<LocalCommandResult> {
|
||||
const url = 'https://www.stickermule.com/claudecode'
|
||||
const success = await openBrowser(url)
|
||||
|
||||
if (success) {
|
||||
return { type: 'text', value: 'Opening sticker page in browser…' }
|
||||
} else {
|
||||
return {
|
||||
type: 'text',
|
||||
value: `Failed to open browser. Visit: ${url}`,
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue