Skip to content

Conversation

@seratch
Copy link
Member

@seratch seratch commented Feb 11, 2026

This pull request adds hosted shell runtime tool along with its native skills support. Developers now can pass a container-based shell runtime with skills this way:

from agents import Agent, ShellTool

agent = Agent(
    name="Shell Agent",
    model="gpt-5.2",
    instructions="Use the available shell tool to answer user requests.",
    tools=[
        ShellTool(
            environment={
                "type": "container_auto",
                "network_policy": {"type": "disabled"},
                "skills": [
                    {
                        "type": "skill_reference",
                        "skill_id": "skill_698bbe879adc81918725cbc69dcae7960bc5613dadaed377",
                        "version": "1",
                    }
                ],
            }
        )
    ],
)

Refer to examples/tools/container_shell_inline_skill.py and examples/tools/container_shell_skill_reference.py for more details.

references:

@seratch seratch added this to the 0.8.x milestone Feb 11, 2026
@seratch seratch force-pushed the feat/container-shell-tool-skill-metadata branch from 2861f54 to 1937dc8 Compare February 11, 2026 17:15
@seratch seratch changed the title feat: add container shell support feat: add container shell + skills support Feb 11, 2026
Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 2861f54d4a

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

@github-actions github-actions bot added the bug Something isn't working label Feb 11, 2026
@seratch seratch removed the bug Something isn't working label Feb 11, 2026
@seratch seratch merged commit 0793a8c into main Feb 11, 2026
10 checks passed
@seratch seratch deleted the feat/container-shell-tool-skill-metadata branch February 11, 2026 17:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant