commit 2b557e1ecaf28249a72257f0b2b0cbdba117cf46 Author: Agent Date: Thu Mar 12 16:16:53 2026 +0000 initial: clean workspace with gitignore diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md new file mode 100644 index 0000000..69a2c7a --- /dev/null +++ b/.github/copilot-instructions.md @@ -0,0 +1,56 @@ +# Copilot Instructions + +Read this file before starting any task. These rules apply to every task without exception. + +--- + +## Environment + +- `/workspace` is the project root and a git repo +- Use whatever language/runtime the project requires +- Never install packages globally unless the task explicitly asks +- Always verify installs work before reporting done + +--- + +## Running Services + +- Check if a service manager exists (systemd, start.sh, etc.) before starting anything manually +- Use `systemctl` if services are managed by systemd +- Check health after starting: `curl http://localhost:/health` or equivalent +- Logs: `journalctl -u -f` or check the project's log location + +--- + +## Git + +- `/workspace` is a git repo — use git for file tracking +- Use `git status --porcelain` to check changed files +- Use `git diff HEAD` for full diffs +- Never commit build artifacts, `__pycache__`, `*.pyc`, `node_modules`, or secrets + +--- + +## Task Scope + +- Do exactly what the task describes — nothing more, nothing less +- Do not add extra endpoints, files, dependencies, or features unless explicitly asked +- Do not refactor code from previous tasks unless asked +- If something seems wrong, flag it — don't silently fix it + +--- + +## Verification + +- Always run the verify command specified in the task before reporting done +- Report the exact output of the verify command +- If verification fails, fix the issue first — do not report partial completion + +--- + +## Reporting Back + +When a task is complete, report: +1. What was created or changed (file list) +2. The exact output of the verify command +3. Any assumptions made or issues encountered diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2398e78 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +agent_gateway.db diff --git a/req_test.py b/req_test.py new file mode 100644 index 0000000..14d36c4 --- /dev/null +++ b/req_test.py @@ -0,0 +1,2 @@ +import requests +print(requests.__version__) \ No newline at end of file diff --git a/test.py b/test.py new file mode 100644 index 0000000..d3e46f2 --- /dev/null +++ b/test.py @@ -0,0 +1 @@ +print('Hello World') \ No newline at end of file