Search results

  1. fukurou

    [MEDIA]

  2. fukurou

    zapier MCP server

    🧰 Step-by-Step: Direct MCP Tool Call with String Output 1. Install the MCP SDK pip install "mcp[cli]" httpx 2. Create Your Config File Save this as zapier_mcp.json: { "mcpServers": { "zapier": { "remote": "https://actions.zapier.com/mcp/YOUR_UNIQUE_ID" } } } Replace...
  3. fukurou

    zapier MCP server

    https://mcp.so/servers
  4. fukurou

    zapier MCP server

  5. fukurou

    zapier MCP server

    Here’s a clean Python walkthrough to connect your AI agent to Zapier MCP—no spaghetti, just the essentials. This setup lets your agent call real-world actions like checking rain alerts, sending emails, or posting to Slack using natural language. 🧰 Prerequisites Python 3.8+ Node.js (for...
  6. fukurou

    what is the livingrimoire

    the livingrimoire is an AGI software design pattern, that allows absorbing skills using 1 line of code per skill. another way to add skills to the AI, now is simply done by copy pasting skill files(.py) into the project's DLC directory. so any skill(image reco, speech reco, face reco...
  7. fukurou

    👨‍💻 dev swift DLC upgrade (shit inside of the ass edition)

    private let loader = { brain.add_skill(DiSarcasm()) brain.add_skill(DiWisdom()) return 0 }() import Foundation let brain = Brain() .chained(DiHelloWorld()) .chained(DiTime()) .chained(DiSysOut()) // DLC personality injection _ = DLC_Personality.loader let brainQueue...
  8. fukurou

    👨‍💻 dev AI findom skill dev

    import re def extract_dollar_amount(text: str) -> int: # Use a regex to find a number before the word "dollars" match = re.search(r'sends\s+(\d+)\s+dollars', text, re.IGNORECASE) if match: amount = int(match.group(1)) return amount if amount > 0 else -1 return -1...
  9. fukurou

    yoga dev

    class YogaFlowHero(Skill): def __init__(self): super().__init__() self.set_skill_type(3) # burst mode skill self.mode: bool = True self.r2 = Responder( "Take a deep breath", "Child's Pose", "Seated forward fold", "Lie on your back"...
  10. fukurou

    jizzed pillow

    from LivinGrimoirePacket.LivinGrimoire import Skill from LivinGrimoirePacket.AXPython import Catche import re class DiTargeteer(Skill): def __init__(self): super().__init__() self.catche = Catche(maxsize=10) # Short-term objective memory self.triggers = ["find"...
  11. fukurou

    jizzed pillow

    from LivinGrimoirePacket.LivinGrimoire import Skill from LivinGrimoirePacket.AXPython import Catche import re class DiTargeteer(Skill): def __init__(self): super().__init__() self.catche = Catche(maxsize=10) # Memory buffer for recent objectives self.triggers =...
  12. fukurou

    LDAR mega thread

  13. fukurou

    LDAR mega thread

  14. fukurou

    trg digivolve

    class DiOneWorder(Skill): def __init__(self, phrase: str = "chi"): super().__init__() # Call the superclass constructor self.set_skill_type(3) # continuous skill self.cry: str = f'{phrase} ' self.drip: PercentDripper = PercentDripper() # Assuming...
  15. fukurou

    trg digivolve

    class DiOneWorder(Skill): def __init__(self, phrase: str = "chi"): super().__init__() # Call the superclass constructor self.cry: str = f'{phrase} ' self.toggler: str = phrase self.drip: PercentDripper = PercentDripper() # Assuming PercentDripper is...
  16. fukurou

    LDAR mega thread

  17. fukurou

    LDAR mega thread

  18. fukurou

    LDAR mega thread

  19. fukurou

    LDAR mega thread

Top