docs: fix typos across documentation and code comments#121
Merged
asdek merged 1 commit intovxcontrol:feature/project_improvementsfrom Feb 22, 2026
Merged
Conversation
- Fix product name typo "PegtAGI" -> "PentAGI" in frontend/README.md - Fix inconsistent capitalization "PentAGi" -> "PentAGI" in config guide (10 occurrences in backend/docs/config.md) - Fix misspelled company names in EULA.md: "Depp Infra" -> "Deep Infra", "Traversal" -> "Traversaal" - Fix misleading OAuth env var names in README.md: GITHUB_CLIENT_ID -> OAUTH_GITHUB_CLIENT_ID, GOOGLE_CLIENT_ID -> OAUTH_GOOGLE_CLIENT_ID (matching .env.example and docker-compose.yml) - Fix typo "applacation" -> "application" in auth.go comments (3 occurrences) - Fix typo "pemissions" -> "permissions" in auth_middleware.go error message - Rename misspelled files: sreenshots.go -> screenshots.go, processor-wizard-integation.md -> processor-wizard-integration.md, terminal-wizard-integation.md -> terminal-wizard-integration.md
There was a problem hiding this comment.
Pull request overview
This PR corrects multiple typos and naming inconsistencies across documentation and code comments in the PentAGI codebase. The changes improve professionalism and accuracy without modifying any functional code logic.
Changes:
- Fixed product name typos ("PegtAGI" and "PentAGi") to correct "PentAGI" spelling across documentation
- Corrected OAuth environment variable names in README.md to match actual configuration (.env.example, docker-compose.yml)
- Fixed spelling errors in code comments and error messages ("applacation" -> "application", "pemissions" -> "permissions")
- Corrected third-party service names in EULA.md ("Depp Infra" -> "Deep Infra", "Traversal" -> "Traversaal")
- Renamed misspelled files: sreenshots.go -> screenshots.go, and two markdown files with "integation" -> "integration"
Reviewed changes
Copilot reviewed 6 out of 9 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| frontend/README.md | Fixed product name typo from "PegtAGI" to "PentAGI" |
| backend/pkg/server/services/screenshots.go | File renamed from sreenshots.go (misspelling fix) |
| backend/pkg/server/services/auth.go | Fixed "applacation" to "application" in 3 OAuth-related comments |
| backend/pkg/server/auth/auth_middleware.go | Fixed "pemissions" to "permissions" in error message |
| backend/docs/installer/terminal-wizard-integration.md | File renamed from terminal-wizard-integation.md (misspelling fix) |
| backend/docs/installer/processor-wizard-integration.md | File renamed from processor-wizard-integation.md (misspelling fix) |
| backend/docs/config.md | Fixed "PentAGi" to "PentAGI" in 10 occurrences throughout configuration guide |
| README.md | Corrected OAuth environment variable names to match actual config (OAUTH_GITHUB_CLIENT_ID, OAUTH_GOOGLE_CLIENT_ID) |
| EULA.md | Fixed third-party service names: "Depp Infra" to "Deep Infra" and "Traversal" to "Traversaal" |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
b4ef76c
into
vxcontrol:feature/project_improvements
3 of 4 checks passed
Contributor
|
@mason5052 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description of the Change
Problem
Multiple typos, inconsistent capitalization, and misspelled filenames across the PentAGI documentation and code:
GITHUB_CLIENT_ID/GOOGLE_CLIENT_IDdon't match the actual env vars used in .env.example and docker-compose.yml (OAUTH_GITHUB_CLIENT_ID/OAUTH_GOOGLE_CLIENT_ID)sreenshots.go,processor-wizard-integation.md,terminal-wizard-integation.mdSolution
Type of Change
Areas Affected
Testing and Verification
Test Configuration
Test Steps
Test Results
Security Considerations
No security implications. Changes are limited to documentation, comments, error messages, and file renames.
Performance Impact
None. No functional code changes.
Deployment Notes
No special deployment considerations. File renames (
sreenshots.go->screenshots.go, etc.) may require updating any internal references, but no such references were found in the codebase.Checklist
Code Quality
go fmtandgo vet(for Go code)Security
Compatibility
Documentation
Additional Notes
Files changed (9):
EULA.md-- Fix "Depp Infra" -> "Deep Infra", "Traversal" -> "Traversaal"README.md-- Fix OAuth env var names to match actual configbackend/docs/config.md-- Fix "PentAGi" -> "PentAGI" (10 occurrences)backend/pkg/server/auth/auth_middleware.go-- Fix "pemissions" -> "permissions"backend/pkg/server/services/auth.go-- Fix "applacation" -> "application" (3 occurrences)backend/pkg/server/services/sreenshots.go->screenshots.go(rename)backend/docs/installer/processor-wizard-integation.md->processor-wizard-integration.md(rename)backend/docs/installer/terminal-wizard-integation.md->terminal-wizard-integration.md(rename)frontend/README.md-- Fix "PegtAGI" -> "PentAGI"