소스 정보
- 저장소
- Dicklesworthstone/pi_agent_rust
- 최근 소스 활동
- 2026년 2월 5일 06:56
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,580
- 포크
- 184
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dicklesworthstone/pi_agent_rust --skill minimax-image-understanding명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Speeds up pi_agent_rust development and verification workflows. Use when editing providers, tools, sessions, extensions, installer/uninstaller logic, or triaging regressions in this repo.
Example skill loaded from resources_discover
Discovers and executes MCP tools on-demand via agentsbox_* tools. Use when you need to find the right tool, when a user asks to use a tool you don’t have in context, or when troubleshooting MCP/tool availability.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | minimax-image-understanding |
| description | Analyze images using AI with the understand_image tool |
Use this skill when you need to analyze, describe, or extract information from images.
Call the understand_image tool directly with a prompt and image URL:
understand_image({
prompt: "Your question about the image",
image_url: "https://example.com/image.png"
})
Use understand_image when:
Do NOT use understand_image when:
understand_image({
prompt: "What do you see in this image?",
image_url: "https://example.com/screenshot.png"
})
Endpoint: POST {api_host}/v1/coding_plan/vlm
Request Body:
{
"prompt": "Your question about the image",
"image_url": "data:image/jpeg;base64,/9j/4AAQ..."
}
Response Format:
{
"content": "AI analysis of the image...",
"base_resp": {
"status_code": 0,
"status_msg": "success"
}
}
The tool automatically handles three types of image inputs:
HTTP/HTTPS URLs: Downloads the image and converts to base64
https://example.com/image.jpgLocal file paths: Reads local files and converts to base64
/Users/username/Documents/image.pngimages/photo.png@ prefix if presentBase64 data URLs: Passes through existing base64 data
data:image/png;base64,iVBORw0KGgo...Supported:
Not supported:
understand_image({
prompt: "What is the error message and where is it located in this screenshot?",
image_url: "./error-screenshot.png"
})
understand_image({
prompt: "What code is shown in this screenshot? Please transcribe it exactly.",
image_url: "https://example.com/code.png"
})
understand_image({
prompt: "Analyze this UI design. What is working well and what could be improved?",
image_url: "https://example.com/mockup.png"
})
understand_image({
prompt: "Extract all text from this image",
image_url: "/Users/username/Documents/scan.png"
})