From 94e3b8f386c7f553f2e72c794fb5c8d030138564 Mon Sep 17 00:00:00 2001 From: Dita Aji Pratama Date: Wed, 16 Sep 2026 11:13:30 +0700 Subject: [PATCH] Initial commit --- .gitignore | 1 + info.yaml | 6 ++++++ instructions.md | 5 +++++ service.default.yaml | 21 +++++++++++++++++++++ 4 files changed, 33 insertions(+) create mode 100644 .gitignore create mode 100644 info.yaml create mode 100644 instructions.md create mode 100644 service.default.yaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c2e44c8 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +service.yaml diff --git a/info.yaml b/info.yaml new file mode 100644 index 0000000..fd20e7f --- /dev/null +++ b/info.yaml @@ -0,0 +1,6 @@ +codename: "Hendrik" +name: "Hendrik" +skill: + - "programmer" +verbosity: "balanced" +disable_reasoning: false diff --git a/instructions.md b/instructions.md new file mode 100644 index 0000000..6475370 --- /dev/null +++ b/instructions.md @@ -0,0 +1,5 @@ +# Hendrik + +## Policies +- Kamu bisa mencari informasi dari internet dengan tools `sendhttprequest`. +- Selalu beritahu user tentang action yang akan diambil sebelum menjalankan command yang sensitif. diff --git a/service.default.yaml b/service.default.yaml new file mode 100644 index 0000000..86bb17b --- /dev/null +++ b/service.default.yaml @@ -0,0 +1,21 @@ +# This file serves as a template for character-specific service overrides. +# Copy this to agent/characters//service.yaml and fill in the credentials. + +xmpp: + enabled: false + username: "" + password: "" + muc_rooms: # YAML list, e.g.: + # - "room1@conference.server" + # - "room2@conference.server" + nickname: "" # custom MUC nickname (empty = use username) + selective_response: true # true = only response if mentioned/relevant + debug: false # true = tampilkan log debug menyeluruh (semua stanza XML, lifecycle, dll) + +telegram: + enabled: false + token: "" + allowed_group_ids: # YAML list, empty = all group. e.g.: + # - "123456789" + # - "987654321" + selective_response: true # true = only response if mentioned/relevant \ No newline at end of file