بنقرة واحدة
doc
Update documentation about current changes in the www/ folder (.md and .slv files).
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Update documentation about current changes in the www/ folder (.md and .slv files).
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Implement the fix described in tasks/todo/<slug>.md, run the project's verification loop, and stop without committing. Use when the orchestrator dispatches a task into a fresh worktree and asks you to do the work.
Review the uncommitted fix in this worktree against tasks/todo/<slug>.md, then commit (or stop with a Rejected verdict). Use after /do-task — the orchestrator runs us in the same worktree to verify and commit the change.
Run the full CI pipeline: clippy, fmt, and tests.
Review code changes and provide feedback on quality, style, and potential issues.
Complete development workflow: run lint (clippy + fmt), tests, update changelog, commit changes, and create a release.
| name | doc |
| description | Update documentation about current changes in the www/ folder (.md and .slv files). |
/doc
/doc list
/doc read <file>
/doc or /doc list to see all .md and .slv files in www//doc read <path> to read a specific file.md files: www/docs/ - these are source documentation files.slv files: www/app/views/docs/ - these are Soli view templates rendered by the web appWhen adding new builtin functions or language features, also update the search index:
www/public/js/search-index.json - Searchable entries for the documentation siteThe search index entries follow this format:
{
"title": "function_name",
"type": "function",
"category": "Core",
"path": "/docs/builtins/core#fn-function-name",
"signature": "function_name(param)",
"description": "Brief description",
"keywords": ["related", "keywords"]
}
www/docs/builtins.md, www/app/views/docs/builtins/, AND www/public/js/search-index.jsonwww/docs/soli-language.md or the relevant language doc.md and .slv documentationlist - List all documentation files in www/ folderread <path> - Read a specific documentation fileupdate - Update the search-index.json when adding new functions/features