This is the official documentation website for TheSecretJuice - PowerShell steroids for CLI tools.
docs/
├── index.html # Homepage
├── modules.html # Module browser
├── module.html # Dynamic module detail page
├── installation.html # Installation guide
├── contribute.html # Contribution guidelines
├── changelog.html # Version history and roadmap
├── assets/
│ ├── css/
│ │ ├── main.css # Core styles and variables
│ │ ├── components.css # Component-specific styles
│ │ └── scrollbar.css # Custom scrollbar
│ ├── js/
│ │ └── app.js # Main application logic
│ └── data/
│ └── modules.json # Module metadata
└── README.md # This file
#e91e63 (Pink)#00bcd4 (Cyan)#ff4081 (Pink Accent)#10b981 (Green)#f59e0b (Orange)#ef4444 (Red)Simply open any HTML file in your browser:
# Open homepage
open index.html
# Or start a local server
python -m http.server 8000
# Then visit http://localhost:8000
To add a new module to the documentation:
assets/data/modules.json:
{
"name": "new-tool-enhance",
"description": "Description of what it does",
"path": "Steroids/new-tool-enhance.ps1",
"category": "Category Name",
"keywords": ["keyword1", "keyword2"],
"icon": "fa-icon-name",
"commands": ["command1", "command2"],
"features": ["Feature 1", "Feature 2"]
}
Create a markdown file: new-tool-enhance.md
This site is designed for zero-config deployment to GitHub Pages:
main branch/docs folderhttps://username.github.io/TheSecretJuice/MIT License - Same as the main project
To improve the documentation:
modules.json for module changesBuilt with ❤️ by mini-page