chore: remove agentspeak file from tracking

This commit is contained in:
2026-01-14 11:27:29 +01:00
parent ff24ab7a27
commit 0794c549a8
2 changed files with 2 additions and 56 deletions

2
.gitignore vendored
View File

@@ -222,6 +222,8 @@ __marimo__/
docs/*
!docs/conf.py
# Generated files
agentspeak.asl

View File

@@ -1,56 +0,0 @@
phase("db4c68c3-0316-4905-a8db-22dd5bec7abf").
keyword_said(Keyword) :- (user_said(Message) & .substring(Keyword, Message, Pos)) & (Pos >= 0).
norm("do nothing and make a little dance, do a little laugh") :- phase("db4c68c3-0316-4905-a8db-22dd5bec7abf") & keyword_said("hi").
+!reply_with_goal(Goal)
: user_said(Message)
<- +responded_this_turn;
.findall(Norm, norm(Norm), Norms);
.reply_with_goal(Message, Norms, Goal).
+!say(Text)
<- +responded_this_turn;
.say(Text).
+!reply
: user_said(Message)
<- +responded_this_turn;
.findall(Norm, norm(Norm), Norms);
.reply(Message, Norms).
+user_said(Message)
: phase("db4c68c3-0316-4905-a8db-22dd5bec7abf")
<- .notify_user_said(Message);
-responded_this_turn;
!check_triggers;
!transition_phase.
+!check_triggers
: phase("db4c68c3-0316-4905-a8db-22dd5bec7abf") &
semantic_hello
<- .notify_trigger_start("trigger_");
.notify_trigger_end("trigger_").
+!trigger_
<- .notify_trigger_start("trigger_");
.notify_trigger_end("trigger_").
+!transition_phase
: phase("db4c68c3-0316-4905-a8db-22dd5bec7abf") &
not responded_this_turn
<- .notify_transition_phase("db4c68c3-0316-4905-a8db-22dd5bec7abf", "end");
-phase("db4c68c3-0316-4905-a8db-22dd5bec7abf");
+phase("end");
?user_said(Message);
-+user_said(Message).
+user_said(Message)
: phase("end")
<- !reply.
+!check_triggers
<- true.
+!transition_phase
<- true.