docs: update all references to MokoConsulting org and Gitea URLs

- mokoconsulting-tech → MokoConsulting across all docs
- github.com → git.mokoconsulting.tech
- CLI examples updated with new org name

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jonathan Miller
2026-04-16 22:21:59 -05:00
parent 661f84b9c7
commit 96c7bd9e46
57 changed files with 435 additions and 256 deletions
+6 -6
View File
@@ -8,7 +8,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
# FILE INFORMATION
DEFGROUP: MokoStandards.Documentation.API
INGROUP: MokoStandards.Documentation
REPO: https://git.mokoconsulting.tech/mokoconsulting-tech/MokoStandards-API
REPO: https://git.mokoconsulting.tech/MokoConsulting/MokoStandards-API
PATH: /docs/api/automation/index.md
VERSION: 04.06.00
BRIEF: API reference for automation scripts in api/automation/
@@ -31,16 +31,16 @@ and opens Pull Requests with the changes.
```bash
# Dry-run sync for the entire org
php api/automation/bulk_sync.php --org mokoconsulting-tech --dry-run
php api/automation/bulk_sync.php --org MokoConsulting --dry-run
# Sync specific repositories
php api/automation/bulk_sync.php --org mokoconsulting-tech --repos "repo-a,repo-b"
php api/automation/bulk_sync.php --org MokoConsulting --repos "repo-a,repo-b"
# Exclude repos and skip archived
php api/automation/bulk_sync.php --org mokoconsulting-tech --exclude "legacy-repo" --skip-archived
php api/automation/bulk_sync.php --org MokoConsulting --exclude "legacy-repo" --skip-archived
# Auto-approve PRs (non-interactive)
php api/automation/bulk_sync.php --org mokoconsulting-tech --yes
php api/automation/bulk_sync.php --org MokoConsulting --yes
```
| Option | Description |
@@ -78,7 +78,7 @@ php api/automation/push_files.php --files=templates/foo.txt:docs/foo.txt --repos
| Option | Description |
|--------|-------------|
| `--org <name>` | GitHub organization (default: mokoconsulting-tech) |
| `--org <name>` | GitHub organization (default: MokoConsulting) |
| `--repos <list>` | Target repositories — comma-separated (required) |
| `--files <list>` | Files to push — destination paths or `source:dest` pairs (required) |
| `--message <msg>` | Custom commit message |
+1 -1
View File
@@ -160,7 +160,7 @@ Definitions are automatically regenerated on each bulk sync. To manually regener
```bash
# Regenerate definition for a specific repository
php api/automation/bulk_sync.php \
--repos mokoconsulting-tech/MyRepo \
--repos MokoConsulting/MyRepo \
--regenerate-definitions
```
+1 -1
View File
@@ -8,7 +8,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
# FILE INFORMATION
DEFGROUP: MokoStandards.Documentation.API
INGROUP: MokoStandards.Documentation
REPO: https://git.mokoconsulting.tech/mokoconsulting-tech/MokoStandards-API
REPO: https://git.mokoconsulting.tech/MokoConsulting/MokoStandards-API
PATH: /docs/api/deploy/index.md
VERSION: 04.06.00
BRIEF: API reference for deployment scripts in api/deploy/
+1 -1
View File
@@ -8,7 +8,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
# FILE INFORMATION
DEFGROUP: MokoStandards.Documentation.API
INGROUP: MokoStandards.Documentation
REPO: https://git.mokoconsulting.tech/mokoconsulting-tech/MokoStandards-API
REPO: https://git.mokoconsulting.tech/MokoConsulting/MokoStandards-API
PATH: /docs/api/fix/index.md
VERSION: 04.06.00
BRIEF: API reference for automated fix scripts in api/fix/
+1 -1
View File
@@ -254,7 +254,7 @@ php api/deploy/deploy-sftp.php --path /path/to/project
```bash
# Sync templates to multiple repositories
php api/automation/bulk_sync.php \
--org mokoconsulting-tech \
--org MokoConsulting \
--repos "repo1,repo2,repo3"
```
+3 -3
View File
@@ -8,7 +8,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
# FILE INFORMATION
DEFGROUP: MokoStandards.Documentation.API
INGROUP: MokoStandards.Documentation
REPO: https://git.mokoconsulting.tech/mokoconsulting-tech/MokoStandards-API
REPO: https://git.mokoconsulting.tech/MokoConsulting/MokoStandards-API
PATH: /docs/api/maintenance/index.md
VERSION: 04.06.00
BRIEF: API reference for housekeeping and maintenance scripts in api/maintenance/
@@ -151,7 +151,7 @@ php api/maintenance/rotate_secrets.php --all --json
| `--repo <name>` | Audit a single repo |
| `--json` | Machine-readable JSON output |
| `--create-issue` | Post/update audit results as a GitHub issue |
| `--org <name>` | GitHub organization (default: `mokoconsulting-tech`) |
| `--org <name>` | GitHub organization (default: `MokoConsulting`) |
---
@@ -171,7 +171,7 @@ php api/maintenance/repo_inventory.php --json
|--------|-------------|
| `--dry-run` | Preview without posting issue |
| `--json` | JSON output to stdout |
| `--org <name>` | GitHub organization (default: `mokoconsulting-tech`) |
| `--org <name>` | GitHub organization (default: `MokoConsulting`) |
---
+1 -1
View File
@@ -8,7 +8,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
# FILE INFORMATION
DEFGROUP: MokoStandards.Documentation.API
INGROUP: MokoStandards.Documentation
REPO: https://git.mokoconsulting.tech/mokoconsulting-tech/MokoStandards-API
REPO: https://git.mokoconsulting.tech/MokoConsulting/MokoStandards-API
PATH: /docs/api/plugin/index.md
VERSION: 04.06.00
BRIEF: API reference for plugin runner scripts in api/plugin_*.php
+5 -5
View File
@@ -8,7 +8,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
# FILE INFORMATION
DEFGROUP: MokoStandards.Documentation.API
INGROUP: MokoStandards.Documentation
REPO: https://git.mokoconsulting.tech/mokoconsulting-tech/MokoStandards-API
REPO: https://git.mokoconsulting.tech/MokoConsulting/MokoStandards-API
PATH: /docs/api/validate/index.md
VERSION: 04.06.00
BRIEF: API reference for all validation scripts in api/validate/
@@ -233,9 +233,9 @@ Scans multiple repositories in a GitHub organization for divergence from
MokoStandards templates. Can create GitHub issues in drifted repos.
```bash
php api/validate/scan_drift.php --org mokoconsulting-tech
php api/validate/scan_drift.php --org mokoconsulting-tech --type dolibarr --json
php api/validate/scan_drift.php --org mokoconsulting-tech --create-issues --threshold 20
php api/validate/scan_drift.php --org MokoConsulting
php api/validate/scan_drift.php --org MokoConsulting --type dolibarr --json
php api/validate/scan_drift.php --org MokoConsulting --create-issues --threshold 20
```
| Option | Description |
@@ -267,7 +267,7 @@ php api/validate/check_composer_deps.php --all --json
| `--repo <name>` | Check a single repository |
| `--all` | Check all governed repos |
| `--json` | Machine-readable JSON output |
| `--org <name>` | GitHub organization (default: `mokoconsulting-tech`) |
| `--org <name>` | GitHub organization (default: `MokoConsulting`) |
---