Search results

  1. 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...
  2. 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...
  3. 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...
  4. 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"...
  5. 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 =...
  6. 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...
  7. fukurou

    parrot dev

    class TrgParrot: # simulates a parrot chirp trigger mechanism # as such this trigger is off at night # in essence this trigger says: I am here, are you here? good. def __init__(self, limit: int): super().__init__() temp_lim: int = 3 if limit > 0...
  8. fukurou

    port overlort python ->Swift assed edition!

    // ╔════════════════════════════════════════════════════════════════════════╗ // β•‘ TABLE OF CONTENTS β•‘ // ╠════════════════════════════════════════════════════════════════════════╣ // β•‘ 1. STRING CONVERTERS...
  9. fukurou

    ass shit creamed corn inside the ass

    class MemoryCore: def __init__(self, dialogue_limit=10, emotion_limit=10, tokens_limit=5): self.recent_dialogue = Catche(dialogue_limit) # Stores recent user and bot utterances self.recent_emotions = Catche(emotion_limit) # Stores keywords/emotional triggers...
  10. fukurou

    AI generated skill

    class DiMirror(Skill): def __init__(self): super().__init__() self.mirror_memory = self.getKokoro().grimoireMemento.load('mirror_persona') or {} def input(self, ear, skin, eye): # Learn keywords from user words = ear.lower().split() for word in...
  11. fukurou

    🐍 python ultimate trg

    import re def extract_code_number(s): match = re.fullmatch(r"code (\d+)", s) if match: return int(match.group(1)) return -1 # Examples print(extract_code_number("code 123")) # Output: 123 print(extract_code_number("hello world")) # Output: -1...
  12. fukurou

    jpoijdg;'sjkdf

    ;lgkhbsl;dfkg sdfgkdl;fgjk;ldfmglaSSEAIKWQEOPRIKFSDPO,VL;XCFG AESRFFSDLFJSD;LFjdsf ;ld fsj;ls d;slfj s;ldfkjs;ld kd asl;dk;lsadfkiodrfjghoiajdkfopqwejtl;sdfkm sdkpklfjkkl;sdkjflp;skdfpl;;kasd[polfksdfropgkikopdfgjghkldfmvkldfmfg fsdolgajakl;dfgmjkladfg aG ADFKG JASDFG GHKAD...
  13. fukurou

    LDAR mega thread

  14. fukurou

    🐍 python has attribute

    class Example: def __init__(self): self.some_attr = 42 obj = Example() # Check if 'some_attr' exists as an attribute in obj print(hasattr(obj, 'some_attr')) # Output: True this could be nice for the add skill aware brain method. @owly shieet and asses if hasattr(obj...
  15. fukurou

    doc string maxing

    In Python, docstrings can be used in methods just like functions, but they belong to a **class** and describe how the method works within that class. ### Example: ```python class Calculator: """A simple calculator class.""" def add(self, a, b): """ Adds two numbers and...
  16. fukurou

    πŸ‘¨β€πŸ’» dev loop jizz up

    import asyncio async def input_loop(): while True: print("Waiting for input...") await asyncio.sleep(2) # Pauses but allows other async tasks print("Loop continues...") asyncio.run(input_loop())
  17. fukurou

    πŸ‘¨β€πŸ’» dev burp

    import os from pygame import mixer class UltraVoiceSkill(Skill): def __init__(self): super().__init__() self.voices_folder = os.path.abspath("voices") self._safe_chars = set("abcdefghijklmnopqrstuvwxyz0123456789 _-") # Allowed chars mixer.init() def...
  18. fukurou

    nappy code

    import time class DiEvent(Skill): def __init__(self): super().__init__() self.event_hour = 19 # 19:00 = 7 PM self._claimed_diapered = False self._reminder_attempts = 0 self._last_reminder_time = 0 self._max_attempts = 3 # Avoid infinite...
  19. fukurou

    shut off skill

    import sys print("I'm outta here!") sys.exit()
Top