Thank you for taking the time to contribute. This guide explains how to help improve the skill.
- Ways to Contribute
- Reporting Issues
- Submitting Pull Requests
- Wiki Sync Contributions
- Adding Examples
- Improving Documentation
- Code of Conduct
| Contribution Type | Description | How |
|---|---|---|
| Wiki Sync Report | A wiki page has changed | Open a Wiki Sync Issue |
| Bug Report | Skill behaves incorrectly | Open a Bug Report |
| Documentation Issue | Docs are wrong or missing | Open a Documentation Issue |
| Skill Improvement | Better prompts, index, routing | Open a Skill Improvement Issue |
| Usage Example | Real-world modding workflow | Open a PR adding a file to examples/ |
| Script Fix | scripts/update-wiki.ps1 issue |
Open a PR with the fix |
Before opening an issue:
- Search existing issues to avoid duplicates.
- Check if the issue exists on the official SCS wiki as well.
- Use the appropriate issue template.
For wiki content issues: The canonical source is the SCS Software Modding Wiki. If the official wiki has the correct information but the skill file is wrong or outdated, that is a valid issue here. If the official wiki itself is wrong, please report it to SCS Software directly.
- Fork the repository.
- Run the update script to fetch the latest content for the affected pages:
.\scripts\update-wiki.ps1 -Pages "Documentation/Engine/Units/accessory_engine_data"
- Verify the fetched content matches the current official wiki page.
- Open a PR referencing the relevant issue.
- Fork the repository.
- Create a branch:
git checkout -b feat/your-description - Make your changes.
- Ensure markdown files render correctly.
- Open a PR with a clear description of what changed and why.
- Title is clear and describes the change
- Description explains the motivation
- New files follow the existing naming conventions
- No unrelated changes are included
The wiki content in skill/docs/ was crawled on 2026-06-10. SCS Software updates the wiki when game patches are released.
If you notice a page is out of date:
- Open a Wiki Sync Issue.
- Include the page title, the wiki URL, and a brief description of what changed.
To update a page yourself and submit a PR:
- Locate the file in
skill/docs/(the path matches the wiki URL structure). - Fetch the current content from the official wiki.
- Replace the file content with the updated version.
- Include the update date in your PR description.
Examples live in examples/. Each file demonstrates a real modding workflow using the skill.
File naming: examples/topic-name.md
Example format:
# [Topic] — Example Prompts & Answers
## Overview
Brief description of what modding task this covers.
## Example 1: [Specific Task]
**Prompt:**
> Your question to Claude here
**What the skill looks up:**
- `docs/engine/units/accessory_engine_data.md`
- Source: https://modding.scssoft.com/wiki/...
**Key information returned:**
Summary of the relevant content.
---
## Example 2: ...Project documentation lives in docs/. These files explain the skill, installation, and architecture — they do not duplicate the wiki content.
When editing documentation:
- Keep explanations factual and concise
- Link to the official SCS wiki when referencing game-specific behavior
- Update the table of contents if you add new sections
This project follows the Contributor Covenant Code of Conduct. By participating, you agree to uphold it.