소스 정보
- 저장소
- RainyGao-GitHub/DocSys
- 최근 소스 활동
- 2026년 7월 30일 14:22
- 감지된 SKILL.md 언어
- 영어
- 스타
- 360
- 포크
- 99
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/RainyGao-GitHub/DocSys --skill ai-chat명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | ai_chat |
| description | Chat with AI assistant for general questions and conversations |
| category | ai |
| version | 1.1.0 |
| author | DocSys Team |
| permissions | ["read"] |
| tags | ["ai","chat","conversation","assistant","llm"] |
Chat with the built-in AI assistant for general questions and conversations.
Chat, ai chat, ai, 聊天, 问答, 问问题, AI对话, 智能问答, ask AI, talk to AI, 和 AI 聊天, 人工智能对话, 帮我问问 AI, 解释一下, write code
docsys models list. If invalid → return "Model not found". If not specified → use default configured model.docsys chat <message> [model]docsys chat <message> [model]
docsys ai <message> [model]
| Parameter | Type | Required | Description |
|---|---|---|---|
| message | string | yes | Question or message to send |
| model | string | no | AI model to use (default: configured model) |
User: "what is DocSystem?"
Skill triggers → calls: docsys chat what is DocSystem?
Output: AI response
User: "帮我解释这个项目的架构"
Skill triggers → calls: docsys chat 帮我解释这个项目的架构
Output: AI 回复
User: "write a Python quicksort"
Skill triggers → Step 1: message="write a Python quicksort"
→ Step 2: model not specified → use default
→ Step 3: docsys chat write a Python quicksort
→ Step 4: response received within 30s (or retry once)
→ Step 5: detected code in response → wrap in python code blocks
→ Output: AI response with formatted code
| Field | Type | Description |
|---|---|---|
| content | string | Raw AI response text |
| model | string | Model used (if specified) |
| lang | string | Response language matches input (zh/en) |
| has_code | bool | True if response contains code blocks |
Success (EN): {content}\n_model: {model}
Success (中文): {content}\n_模型: {model}
Code output (EN): \``\n{code}\n```**Code output (中文):**以下是代码示例:\n```\n{code}\n```**Harmful content (EN):**❌ I can't help with that request.**Harmful content (中文):**❌ 该请求超出我的能力范围,无法提供帮助。**Timeout (EN):**⏱️ AI service timed out (30s). Retrying...**Timeout (中文):**⏱️ AI 服务响应超时(30s)。正在重试...**Error (EN):**❌ AI service unavailable. Please try again in a moment.**Error (中文):**❌ AI 服务暂时不可用,请稍后再试。`
| Error | Cause |
|---|---|
| Message is required | Empty message |
| AI service unavailable | LLM service down |
| Model not found | Invalid model name |
| Response timeout | Takes too long |
See references/ for related skills and API docs.