.ai/agents.md
Project: flow
This project is configured for autonomous AI agent workflows with human-in-the-loop approval.
Every response MUST end with exactly one of these signals on the final line:
done.
Use when task completed successfully with high certainty. No further action needed.
done: <message>
Use when task completed with context to share. Example: done: Added login command with --token flag
needsUpdate: <message>
Use when you need human decision or action. Example: needsUpdate: Should I use OAuth or API key auth?
error: <message>
Use when task failed or cannot proceed. Example: error: Build failed - missing dependency xyz
Added the new CLI command with all requested flags.
done.
Refactored the auth module to use the new token format.
done: Auth now supports both JWT and API key methods
Found two approaches for caching:
1. Redis - better for distributed systems
2. In-memory - simpler, faster for single instance
needsUpdate: Which caching approach should I use?
Attempted to run tests but encountered issues.
error: Test suite requires DATABASE_URL environment variable