ワンクリックで
implementing-random-agent
Develop a baseline random agent to stress-test the environment and establish minimum performance bounds.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Develop a baseline random agent to stress-test the environment and establish minimum performance bounds.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | implementing-random-agent |
| description | Develop a baseline random agent to stress-test the environment and establish minimum performance bounds. |
| version | 0.1.0 |
Before any deep neural networks consume GPU cycles, a perfectly random agent must be deployed inside the finalized Gymnasium environment. This serves two critical purposes: stability testing and establishing the absolute zero-point of intelligence.
Load the custom env.py.
Write a script that queries env.action_space.sample() without replacing any logic.
1,000,000 continuous steps.Track the episode_reward across 1,000 episodes completed by the random agent.
Produce a python script (baseline_random.py) and log the metrics in the output document:
### Random Agent Baseline
- **Hardware Stability**: [Passed 1M steps / Failed with error X]
- **Mean Episode Return**: [-14.5 ± 2.1]
- **Average Episode Length**: [140 steps]
Orchestrator agent for agent-01-discovery
Orchestrator agent for agent-02-simulation
Orchestrator agent for agent-03-baseline
Orchestrator agent for agent-04-training
Orchestrator agent for agent-05-evaluator
Orchestrator agent for agent-06-deployment