<< All versions
Skill v1.0.1
currentAutomated scan100/100jd-opensource/oxygent/analyzing-oxygent
1 files
──Details
PublishedJune 18, 2026 at 06:01 PM
Content Hashsha256:32bfdd9e4afb6b1f...
Git SHA0072ab949030
Bump Typepatch
──Files
Files (1 file, 2.3 KB)
SKILL.md2.3 KBactive
SKILL.md · 92 lines · 2.3 KB
version: "1.0.1" name: OxyGent Framework Explorer description: Explore and understand the OxyGent framework structure, components, and implementation patterns.
OxyGent Framework Explorer
Introduction
This skill assists in navigating and understanding the OxyGent codebase. Use it when you need to investigate framework internals, discover available components, or locate relevant code sections.
Core Capabilities
The explorer offers these main functions:
- Browse the example implementations to learn practical usage patterns
- Examine source code to understand component behaviors
- Search for specific classes, functions, or patterns across the project
Navigation Guide
Locating Code Examples
The examples/ directory contains demonstration files showcasing various framework features:
bash
ls examples/agents/
Notable demonstration files include:
- Agent setup examples:
demo_single_agent.py,demo_react_agent.py - Skill integration examples:
demo_skill_agent.py,demo_skill_agent2.py
For viewing any example:
bash
cat examples/agents/demo_skill_agent.py
Examining Source Structure
The core implementation resides in the oxygent/ directory:
bash
# Core agent implementationsls oxygent/oxy/agents/# Skill system componentsls oxygent/oxy/skills/# Preset tool definitionsls oxygent/oxy/preset_tools/
To inspect specific source files:
bash
cat oxygent/oxy/agents/skill_agent.py
Finding Specific Implementations
Use grep to locate definitions and patterns:
bash
grep -r "class SkillAgent" oxygent/ --include="*.py"grep -r "def query" oxygent/ --include="*.py"
Recommended Workflow
When investigating OxyGent-related questions:
- Understanding usage → Browse examples first
- Checking implementation → Examine relevant source files
- Finding definitions → Use grep with appropriate patterns
Practical Commands Reference
| Purpose | Command | |
|---|---|---|
| List agent examples | ls examples/agents/ | |
| View a source file | cat oxygent/oxy/agents/<name>.py | |
| Search class definitions | grep -r "class <Name>" oxygent/ --include="*.py" | |
| Explore directory tree | tree -L 2 oxygent/oxy/ |
Additional Resources
- Project README:
README.md - Documentation:
docs/directory - Configuration:
config.json