Skip to content
View theTechGoose's full-sized avatar
  • 16:51 (UTC -04:00)

Highlights

  • Pro

Block or report theTechGoose

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. rafasDotfiles rafasDotfiles Public

    Shell

  2. Claude Bot β€” Observable wrapper for ... Claude Bot β€” Observable wrapper for claude-agent-sdk (Deno)
    1
    /**
    2
     * Claude Bot β€” Observable wrapper for @anthropic-ai/claude-agent-sdk
    3
     *
    4
     * Import from gist:
    5
     *   import { Bot, quickQuery } from "https://gist.githubusercontent.com/theTechGoose/68c8429d1564b36e02350df472a2bdd8/raw/claude-bot.ts";
  3. Rune Assert β€” DTO + primitive valida... Rune Assert β€” DTO + primitive validation for Deno (class-validator)
    1
    import { plainToInstance } from "npm:class-transformer@^0.5.1";
    2
    import { validateSync } from "npm:class-validator@^0.14.1";
    3
    
                  
    4
    interface Assert {
    5
      <T extends object>(cls: new (...args: unknown[]) => T, plain: unknown): T;