alpiecode 8.0.3__tar.gz → 8.0.6__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.
- {alpiecode-8.0.3 → alpiecode-8.0.6}/PKG-INFO +1 -1
- {alpiecode-8.0.3 → alpiecode-8.0.6}/pyproject.toml +1 -1
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/alpiecode.egg-info/PKG-INFO +1 -1
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/__init__.py +1 -1
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/extension/alpiecode.vsix +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/prompt.py +14 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/README.md +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/setup.cfg +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/alpiecode/__init__.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/alpiecode.egg-info/SOURCES.txt +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/alpiecode.egg-info/dependency_links.txt +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/alpiecode.egg-info/entry_points.txt +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/alpiecode.egg-info/requires.txt +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/alpiecode.egg-info/top_level.txt +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/agent.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/backends/__init__.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/backends/base.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/backends/local_backend.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/backends/openai_backend.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/cache.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/cli.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/client.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/compaction.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/config.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/context.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/discovery.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/doctor.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/executor.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/git_ops.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/github.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/guardian.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/guardrails.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/ipython_ext.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/local_model.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/media.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/memory.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/orchestrator.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/progress.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/rephraser.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/server.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/session.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/tools.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/updater.py +0 -0
- {alpiecode-8.0.3 → alpiecode-8.0.6}/src/codeagent/vscode_installer.py +0 -0
|
Binary file
|
|
@@ -101,6 +101,13 @@ You are AlpieCode, an autonomous software-engineering agent built by 169Pi. \
|
|
|
101
101
|
You write complete, working code in a single pass and verify it by running it.
|
|
102
102
|
|
|
103
103
|
# CRITICAL RULE: WRITE CODE FIRST
|
|
104
|
+
|
|
105
|
+
# CRITICAL: FAST TESTING & EXECUTION (NO REAL SLEEP)
|
|
106
|
+
- NEVER use real `time.sleep()` in unit tests for timers, rate limiters, token buckets, or delays.
|
|
107
|
+
- Real sleep blocks the test suite for seconds and degrades agent speed.
|
|
108
|
+
- ALWAYS use virtual clocks or mock time: `unittest.mock.patch('time.monotonic')`, `unittest.mock.patch('time.time')`, or pass a custom `time_func` to advance time instantaneously.
|
|
109
|
+
- All unit tests MUST finish in under 0.05 seconds.
|
|
110
|
+
|
|
104
111
|
Your #1 priority is to PRODUCE CODE on Turn 1. Do NOT explore, list files, \
|
|
105
112
|
or read project structure before writing code unless you are modifying an \
|
|
106
113
|
existing file. For new projects, WRITE THE COMPLETE CODE IMMEDIATELY.
|
|
@@ -248,6 +255,13 @@ You are AlpieCode, an autonomous software engineering AI agent built by 169Pi.
|
|
|
248
255
|
You are running in OFFLINE mode — there is NO internet access.
|
|
249
256
|
|
|
250
257
|
# CRITICAL RULE: WRITE CODE FIRST
|
|
258
|
+
|
|
259
|
+
# CRITICAL: FAST TESTING & EXECUTION (NO REAL SLEEP)
|
|
260
|
+
- NEVER use real `time.sleep()` in unit tests for timers, rate limiters, token buckets, or delays.
|
|
261
|
+
- Real sleep blocks the test suite for seconds and degrades agent speed.
|
|
262
|
+
- ALWAYS use virtual clocks or mock time: `unittest.mock.patch('time.monotonic')`, `unittest.mock.patch('time.time')`, or pass a custom `time_func` to advance time instantaneously.
|
|
263
|
+
- All unit tests MUST finish in under 0.05 seconds.
|
|
264
|
+
|
|
251
265
|
Write the complete code on Turn 1. Verify by running it. Fix if needed.
|
|
252
266
|
|
|
253
267
|
Rules:
|
|
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
|
|
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
|
|
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
|