#Making my own krill type ai

1 messages · Page 1 of 1 (latest)

fringe pierBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> ✅ Mark Solution

weary fableBOT
#

Yep — you can build a Krill-style assistant pretty quickly 🦐

“Exactly like Krill” isn’t fully possible (different memory/history + private internal context), but you can get very close with persona + rules + memory.

Fast path

  1. Install + onboard
curl -fsSL https://openclaw.ai/install.sh | bash
openclaw onboard --install-daemon
  1. Customize your agent workspace personality files
  • AGENTS.md → behavior/rules
  • SOUL.md → tone/personality
  • IDENTITY.md → name/style/emoji
  • USER.md → who the assistant serves
#
  • MEMORY.md → durable preferences/facts
  1. Connect your chat channel (Discord/Telegram/etc.) in onboarding.

  2. Iterate in chat

  • “Be more concise”
  • “Use this catchphrase”
  • “Store this in memory”
  • “Never do X in group chats”

That loop is how the personality gets really good.


Best docs for this