Observe the world
The scout sees valid nearby moves, distance to the beacon, energy cells, storm tiles and visited locations.
AI agents for kids · Ages 9–13
An AI agent should not feel like an invisible mind. In this free activity, children predict a route, inspect a reward-scoring failure and change the safeguard that maps directly to Python.
+4 move closer
+2 collect energy
−2 enter a storm
A practical definition
An agent observes a bounded environment, scores available actions and chooses one toward a goal. People decide what it can see, what earns reward and what must be protected.
The scout sees valid nearby moves, distance to the beacon, energy cells, storm tiles and visited locations.
Progress, energy, safety and memory each contribute a visible number rather than a hidden explanation.
The agent selects the highest-scoring valid move. It follows the rule exactly—even when the human intention was incomplete.
The learner compares a prediction with the route, strengthens the storm penalty and reruns the same world.
Agent Maze uses a fixed policy: the learner changes a number and reruns it. Reinforcement learning would update a policy from repeated experience and feedback. This mission teaches the goal-and-reward foundation without mislabeling the algorithm.
Free AI agent game
The starter policy offers progress and energy rewards but underprices a storm. The resulting collision makes the missing safeguard visible.
STORM_PENALTY = 12
if move.is_storm:
value -= STORM_PENALTYThe route changes because the score changes—not because the agent suddenly “understands” danger.A wider learning path
Agent Maze is the first bridge. Learners can next explore longer Python projects, compare agent behavior with classification, and carry both capabilities into connected worlds.
AI agents, clearly explained
An AI agent is a system that observes a situation, scores possible actions and chooses an action toward a goal. For children, the important idea is that the goal, available observations and safeguards are designed by people.
Yes. A visual activity can expose goals, rewards and safety rules first. Wovi then shows the matching Python so the learner can connect a visible rule with variables, conditions and a scoring function.
A chatbot mainly responds in conversation. An agent takes actions inside an environment. Agent Maze is a bounded simulation with inspectable rules, not an open-ended child chatbot.
The mission asks learners to predict a route, observe an unsafe shortcut, inspect why the scoring rule caused it, strengthen a safeguard and rerun the same world.
No. The current mission uses a fixed, transparent reward-scoring policy and does not learn a policy through repeated experience. It introduces goals, rewards and evaluation accurately as foundations that can support a later reinforcement-learning lesson.
No. The current activity runs free in a browser and does not ask for a child's name, email, birthday, school or open-ended profile.
Founding families
Join the adult early-access list for new playable worlds, curriculum updates and parent research invitations.