This commit is contained in:
Bryan Ramos 2026-03-31 12:46:52 -04:00
commit 55ae41cb0c
1902 changed files with 513237 additions and 0 deletions

View file

@ -0,0 +1,11 @@
import type { Command } from '../../commands.js'
const stickers = {
type: 'local',
name: 'stickers',
description: 'Order Claude Code stickers',
supportsNonInteractive: false,
load: () => import('./stickers.js'),
} satisfies Command
export default stickers

View 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}`,
}
}
}