mcpbeat Sign in

AI Python Custom Loop Agent Skill

Use when building custom agent loops. Modify tool dispatch, history management, hooks, control flow.

489 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
4
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/vercel-labs/seal --skill ai-python-custom-loop

The instruction itself

1 sections, as written by the author

ai-python-custom-loop

Keep the default shape unless you must change control flow:

class MyAgent(ai.Agent):
    async def loop(self, context: ai.Context):
        while context.keep_running():
            async with (
                ai.stream(context=context) as stream,
                ai.ToolRunner() as runner,
            ):
                async for event in ai.util.merge(stream, runner.events()):
                    yield event

                    if isinstance(event, ai.events.ToolEnd):
                        runner.schedule(context.resolve(event.tool_call))

                context.add(stream.message)
                context.add(runner.get_tool_message())

Rules:

  • Call context.keep_running() at the top of each turn.
  • Use ai.stream(context=context) so model, messages, tools, output type, and params stay together.
  • Yield events from the loop. Agent.run hides replay events from callers.
  • On ToolEnd, use context.resolve(event.tool_call). It handles validation, approval gates, and cached replay results.
  • Do not call tool.fn directly unless you also handle validation, approvals, and cached results.
  • Schedule resolved calls with ToolRunner.schedule(...).
  • ToolRunner.schedule(...) also accepts a zero-arg async callable that returns ai.events.ToolCallResult.
  • If you make a result yourself, use runner.add_result(ai.tool_result(...)).
  • Add stream.message, then runner.get_tool_message(). context.add(...) skips replay messages.
  • Every tool call must get one tool result.
  • For hooks, let context.resolve(...) build the gated call. Use ai-python-serverless-execution for request boundaries.
  • For durable calls, keep this shape and wrap only model or tool I/O. Use ai-python-durable-execution.

How to use it

Copy the folder

Take vercel-labs/ai-python-custom-loop from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.