Set up development environment (deps manifest + AGENTS.md) - #2
Draft
ThyFriendlyFox wants to merge 1 commit into
Draft
Set up development environment (deps manifest + AGENTS.md)#2ThyFriendlyFox wants to merge 1 commit into
ThyFriendlyFox wants to merge 1 commit into
Conversation
Co-authored-by: ThyFriendlyFox <thyfriendlyfox@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Sets up the development environment for the Multi-Agent Orchestration System (ORC) so a Cloud Agent (or a new developer) can install dependencies and run the agents.
The repo previously had no dependency manifest, no lockfile, no CI, and no lint/test config. This PR adds the missing pieces without touching any product code.
Changes
requirements.txt— documents the previously-undeclared dependencies:google-adk+python-dotenv(required by all agents) andgspread+pandas(only forgoogle-sheets-agent).AGENTS.md— adds a## Cursor Cloud specific instructionssection covering the key runtime gotcha (every agent needs a validGOOGLE_API_KEY/Gemini to do anything), first-time setup, how to run the agents, and the fact that there is no build/lint/test framework.Verification
google-adk(2.6.3),python-dotenv,gspread,pandas.python3 setup_multi_agent.py— created theworkspace/tree and.env.python3 -m compileallpasses for all entry points.file-agent/run_autonomous.pyend-to-end: it starts, loads.env, enters the monitor loop, detects a pending task, and invokes the Gemini metacognition LLM. The only failure is400 API_KEY_INVALIDfrom a placeholder key — confirming the wiring is correct and a validGOOGLE_API_KEYis the sole requirement to complete tasks.Note
.envandworkspace/remain gitignored (runtime-only) and are not committed.