🧭
AutomationPython

Environment Discovery

by vstorm-co

Environment Discovery is an Automation skill for Claude Code, published by vstorm-co in pydantic-deepagents.

1K stars126 forkson vstorm-co/pydantic-deepagentsAdded 2026/08/21Repository updated 2026/08/20
agent-frameworkai-agentsanthropicclaude-codeclicoding-agentdeep-researchdocker-sandboxllmsmcpplaywrightpydanticpydantic-aipythonsubagentstuivstorm
Install in seconds
Install Environment Discovery
Copy Environment Discovery into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/vstorm-co/pydantic-deepagents/tree/main/pydantic_deep/bundled_skills/environment-discovery ~/.claude/skills/environment-discovery

Requires Node.js. Downloads this skill only β€” not the rest of the repository β€” into your Claude Code skills folder.

Without Node.js

git clone https://github.com/vstorm-co/pydantic-deepagents.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
pydantic_deep/bundled_skills/environment-discovery/SKILL.md in vstorm-co/pydantic-deepagents
Installs to
~/.claude/skills/environment-discovery
Collection
One of 14 skills cataloged from this repository
Category
Automation β€” 1523 skills

What Environment Discovery does

Environment Discovery guides an agent to inspect files, tools, and data formats before making changes. Use it when dropped into an unfamiliar workspace or when file contents, build tools, or dependencies are unknown.

Environment Discovery is cataloged under Automation on DirSkills. Environment Discovery comes from a repository tagged agent-framework, ai-agents, anthropic, claude-code and cli.

Documentation

README

Environment Discovery

When dropped into an unfamiliar environment, ALWAYS explore before acting.

Step 1: Understand the workspace

ls -la /app/          # or the working directory
find . -type f | head -50
  • What files exist? What are their sizes?
  • Are there READMEs, Makefiles, config files?
  • What languages/frameworks are involved?

Step 2: Inspect data files

Before writing any code that reads data, understand the format:

  • file <filename> β€” detect file type (binary, text, encoding)
  • head -20 <file> β€” first lines of text files
  • xxd <file> | head -20 β€” hex dump for binary files
  • wc -l <file> β€” line count for text files
  • stat <file> β€” exact file size in bytes
  • python3 -c "import struct; ..." β€” parse binary headers

Step 3: Check available tools

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Environment Discovery

  • What else does vstorm-co publish alongside Environment Discovery?

    Environment Discovery is one of 14 skills that DirSkills catalogs from vstorm-co/pydantic-deepagents, the repository it ships in. Its siblings there include Build And Compile, Code Review and Code Review. Each one is a separate skill with its own page in this directory, installs the same way Environment Discovery does, and is maintained by vstorm-co in that same repository. The rest of the collection is listed on the vstorm-co/pydantic-deepagents page.

  • How does Environment Discovery compare to other Automation skills?

    Environment Discovery ranks #828 by stars among the 1523 Automation skills in this catalog. The most-starred ones next to it are Autonomous Loops, Autonomous Agent Harness and Automation Audit Ops. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Environment Discovery against them. Open each page to compare what they document and how they install.