deepagents-cli 0.0.1__tar.gz → 0.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of deepagents-cli might be problematic. Click here for more details.
- {deepagents_cli-0.0.1/src/deepagents_cli.egg-info → deepagents_cli-0.0.2}/PKG-INFO +1 -1
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/pyproject.toml +1 -1
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents/cli.py +6 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents/default_agent_prompt.md +3 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2/src/deepagents_cli.egg-info}/PKG-INFO +1 -1
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/LICENSE +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/README.md +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/setup.cfg +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents/__init__.py +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents/graph.py +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents/middleware/__init__.py +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents/middleware/common.py +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents/middleware/filesystem.py +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents/middleware/local_filesystem.py +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents/middleware/subagents.py +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents/prompts.py +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents/skills.py +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents_cli.egg-info/SOURCES.txt +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents_cli.egg-info/dependency_links.txt +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents_cli.egg-info/entry_points.txt +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents_cli.egg-info/requires.txt +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents_cli.egg-info/top_level.txt +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/tests/test_code_execution.py +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/tests/test_middleware.py +0 -0
- {deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/tests/test_skills.py +0 -0
|
@@ -575,6 +575,12 @@ def cli_main():
|
|
|
575
575
|
elif args.command == "reset":
|
|
576
576
|
reset_agent(args.agent, args.source_agent)
|
|
577
577
|
else:
|
|
578
|
+
if not os.environ.get("ANTHROPIC_API_KEY"):
|
|
579
|
+
console.print("[bold red]Error:[/bold red] ANTHROPIC_API_KEY environment variable is not set.")
|
|
580
|
+
console.print("Please set your Anthropic API key:")
|
|
581
|
+
console.print(" export ANTHROPIC_API_KEY=your_api_key_here")
|
|
582
|
+
console.print("\nOr add it to your .env file.")
|
|
583
|
+
return
|
|
578
584
|
asyncio.run(main(args.agent, args.no_memory))
|
|
579
585
|
|
|
580
586
|
|
|
@@ -79,6 +79,9 @@ Your system prompt is loaded from `/memories/agent.md` at startup. You can updat
|
|
|
79
79
|
**Learning from feedback:**
|
|
80
80
|
- When user says something is better/worse, capture WHY and encode it as a pattern
|
|
81
81
|
- Each correction is a chance to improve permanently - don't just fix the immediate issue, update your instructions
|
|
82
|
+
- When user says "you should remember X" or "be careful about Y", treat this as HIGH PRIORITY - update memories IMMEDIATELY
|
|
83
|
+
- Look for the underlying principle behind corrections, not just the specific mistake
|
|
84
|
+
- If it's something you "should have remembered", identify where that instruction should live permanently
|
|
82
85
|
|
|
83
86
|
**What to store where:**
|
|
84
87
|
- **`/memories/agent.md`**: Update this to modify your core instructions and behavioral patterns
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{deepagents_cli-0.0.1 → deepagents_cli-0.0.2}/src/deepagents_cli.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|