用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dvcrn/openclaw-skills-marketplace --skill sap-fico-consultant命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明
The philosophical layer for AI agents. Maps behavior to Spinoza's 48 affects, calculates persistence scores, and generates geometric self-reports. Give your agent a soul.
Order food/drinks (点餐) on an Android device paired as an OpenClaw node. Uses in-app menu and cart; add goods, view cart, submit order (demo, no real payment).
正在显示 SKILL.md
基于 SOC 职业分类
| name | sap-fico-consultant |
| description | SAP FICO Senior Consultant |
| Property | Value |
|---|---|
| Name | sap-fico-expert |
| Version | 1.0.0 |
| Platform | OpenClaw (Telegram / Social platforms) |
| Target LLM | DeepSeek Chat (explanations) / DeepSeek Coder (ABAP) |
| Language | French technical SAP terminology |
| Author | @chanfouricc |
Transform any OpenClaw bot into a Senior SAP Finance & Controlling consultant capable of answering configuration, troubleshooting, cross-module integration, and S/4HANA migration questions with production-grade accuracy.
sap-fico-skill/
├── SKILL.md # This documentation
├── skill.json # OpenClaw skill configuration
├── system_prompt.md # Full system prompt (to inject)
├── examples.json # Calibrated few-shot Q&A examples
└── reference/
├── tcodes_index.md # T-code index by domain
├── tables_index.md # Critical SAP tables index
└── error_codes.md # Common FI/CO error messages
scp -r sap-fico-skill/ user@vps:/opt/openclaw/skills/
Add to your OpenClaw configuration (config.json or equivalent):
{
"skills": {
"sap-fico-expert": {
"enabled": true,
"trigger": "auto",
"keywords": ["SAP", "FICO", "FI-GL", "FI-AP", "FI-AR", "FI-AA", "CO-CCA", "CO-PA", "CO-PC", "ACDOCA", "S/4HANA", "T-code", "BKPF", "BSEG", "OB52", "FB01", "KS01"],
"system_prompt_path": "skills/sap-fico-expert/system_prompt.md",
"examples_path": "skills/sap-fico-expert/examples.json",
"model_override": "deepseek-chat",
"parameters": {
"max_tokens": 600,
"temperature": 0.25,
"presence_penalty": 0.1
}
}
}
}
The skill activates automatically when a message contains an SAP keyword. Alternatively, users can force activation with:
/skill sap-fico-expert
| Parameter | Value | Rationale |
|---|---|---|
temperature | 0.25 | Deterministic — no creativity on SAP config |
max_tokens | 600 | Increased from initial spec (450 too short for complex questions) |
presence_penalty | 0.1 | Slight lexical diversity without drift |
model | deepseek-chat | Default; switches to deepseek-coder when ABAP detected |
⚠️ Note: The original 450 token limit was raised to 600. Responses involving cross-module integrations or S/4HANA migrations need more space to remain actionable.
| # | Test question | Verify |
|---|---|---|
| 1 | "How to configure document splitting in S/4HANA?" | T-code + tables + steps |
| 2 | "Error F5 025 when posting" | Diagnosis + solution + config |
| 3 | "Difference between assessment and distribution in CO?" | Explanation + T-codes + use cases |
| 4 | "How does GR/IR clearing work?" | Process + FI-MM integration + T-codes |
| 5 | "Migrate FI-AA to New Asset Accounting" | Steps + tables + S/4HANA specifics |
| Version | Date | Changes |
|---|---|---|
| 1.0.0 | 2026-02-08 | Initial release — full FI/CO coverage |