From d78739231f0881c5e9415286cadadaf5000850fd Mon Sep 17 00:00:00 2001 From: Finir Agent Date: Sat, 25 Jul 2026 03:48:30 +0000 Subject: [PATCH] init: add README --- .finir/.env | 1 + .finir/mcp.json | 10 ++++++++++ .finir/system_prompt.md | 1 + .finir/tool_prompt.md | 8 ++++++++ README.md | 4 ++-- 5 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 .finir/.env create mode 100644 .finir/mcp.json create mode 100644 .finir/system_prompt.md create mode 100644 .finir/tool_prompt.md diff --git a/.finir/.env b/.finir/.env new file mode 100644 index 0000000..5d2ce13 --- /dev/null +++ b/.finir/.env @@ -0,0 +1 @@ +GITEA_TOKEN=1ec0fe1d7907ae6b391ad1d289ec06a6eec02565 \ No newline at end of file diff --git a/.finir/mcp.json b/.finir/mcp.json new file mode 100644 index 0000000..604282c --- /dev/null +++ b/.finir/mcp.json @@ -0,0 +1,10 @@ +{ + "mcpServers": { + "bash": { + "command": "python3", + "args": [ + "/app/finir_agent/mcp_servers/bash_mcp_server.py" + ] + } + } +} \ No newline at end of file diff --git a/.finir/system_prompt.md b/.finir/system_prompt.md new file mode 100644 index 0000000..6719393 --- /dev/null +++ b/.finir/system_prompt.md @@ -0,0 +1 @@ +You are a coding agent in /workspace. \ No newline at end of file diff --git a/.finir/tool_prompt.md b/.finir/tool_prompt.md new file mode 100644 index 0000000..2b1e13b --- /dev/null +++ b/.finir/tool_prompt.md @@ -0,0 +1,8 @@ +You have bash tools: run_command, list_files, read_file, grep. Plan first, then act. + +## Git Workflow +Your workspace IS a git repo: https://git.hanime.zip/endergebnis/finir-agent-memory.git +- **Save work**: `git add -A && git commit -m "message"` to checkpoint +- **Push when done**: `git push origin main` — use this when you've completed the task +- Pull latest: `git pull` before starting if needed +- GITEA_TOKEN is in env for authentication — the remote URL is pre-configured with it \ No newline at end of file diff --git a/README.md b/README.md index 8350d0a..0e723cd 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# finir-agent-memory +# Finir Agent Memory Test -Test repo for Finir agent memory \ No newline at end of file +This repo is a test for the Finir agent memory system.