skills/create-operational-sop/SKILL.md
Generate validated operational SOPs for Ark ecosystem projects by testing commands before documenting them. Use when: user wants to create or audit SOPs for a project.
npx skillsauth add arklabshq/arkadian create-operational-sopInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
When to use:
User input: A project ID and optionally an SOP type (development-workflow, deployment-guide, all, audit).
Examples:
arkd — Audit and generate all missing SOPswallet development-workflow — Generate development workflow onlyfulmine audit — Only audit, don't generateThis skill generates validated operational documentation by actually testing commands before documenting them.
${ARKADIAN_DIR}/docs/INDEX.md and find project entrydocs_path and repo_path| Type | Indicators | Common Commands |
|------|-----------|----------------|
| Go Backend | go.mod, Makefile | make build, make test, go run |
| TypeScript Frontend | package.json + React/Vite | pnpm install, pnpm run start |
| TypeScript Backend | package.json + Node.js | pnpm install, pnpm run dev |
| Infrastructure | *.tf files | tofu init, tofu plan |
| Telemetry | docker-compose.yml + Prometheus | docker compose up |
Check required files:
sop/development-workflow.md # REQUIRED
testing/usage.md # REQUIRED
testing/how_to_run.md # REQUIRED
testing/how_to_test.md # REQUIRED
testing/troubleshooting.md # REQUIRED
Optional (by type): sop/deployment-guide.md, testing/api-reference.md
Report audit results. If audit mode, stop here.
For each missing file, follow the validation-first approach:
sop/development-workflow.md: Prerequisites, Setup, Building, Running, Testing, Quality Checks, PR Checklist
testing/how_to_run.md: Prerequisites, Quick Start, Docker Deployment, Local Development, Configuration, Verification
testing/how_to_test.md: Unit Tests, Integration Tests, Running Specific Tests, Test Coverage, CI/CD
testing/troubleshooting.md: Common Issues (Build Failures, Runtime Errors, Test Failures), Debugging (Logs, Docker Logs, Environment)
## Generation Report for <project-id>
### Commands Validated:
- `make build` - SUCCESS
- `make test` - SUCCESS (23 tests passed)
### Commands Not Validated (require manual verification):
- `make integrationtest` - Requires external dependencies
documentation
Update project documentation based on new commits and changes in the repository. Use when: user wants to sync docs after project changes.
testing
Remove a project from the Arkadian documentation registry and delete all associated documentation files. Use when: user wants to deregister a project.
tools
RESTRICTED to ark-project-manager. Generate actionable, dependency-ordered task lists organized by user story.
testing
RESTRICTED to ark-project-manager. Create or update feature specifications from natural language descriptions.