Here is the short, non-AI, compact English version of your README — minimal marketing, just the essentials.
DevOps tool for automated service integration on Linux.
- System state analysis
- Plan generation
- Modes: plan, dry-run, apply
- YAML/JSON config support
- Command safety validation
- Debian/Ubuntu
- Python ≥ 3.8
OPENAI_API_KEY- sudo/root privileges
git clone https://github.com/Abstract-Chief/Lintegrate.git
cd Lintegrate
pip install -r requirements.txt
export OPENAI_API_KEY="your-api-key"python -m lintegrate plan --target postgres --intent "dev db"
python -m lintegrate apply --target postgres --intent "dev db"
python -m lintegrate apply --config examples/postgres.yamlpython -m lintegrate dry-run --target nginx --intent "reverse proxy"
python -m lintegrate apply --config examples/nginx.yaml- plan — generate a plan only
- dry-run — simulate execution
- apply — execute changes
--target TARGET
--intent TEXT
--config FILE
--constraint TEXT
--priority LEVEL
--no-confirm
python -m lintegrate apply \
--target postgres \
--intent "production db" \
--constraint "listen on localhost" \
--constraint "enable SSL"python -m lintegrate apply \
--target nginx \
--intent "reverse proxy" \
--constraint "proxy to 127.0.0.1:8080"postgres.yaml
target: postgres
intent: "dev database"
constraints:
- "listen on localhost"
- "create app_db"
params:
db_name: app_db
db_user: app_usernginx.yaml
target: nginx
intent: "reverse proxy"
params:
backend_host: 127.0.0.1
backend_port: 3000
listen_port: 80cli.py – CLI interface
ai_planner – plan generation
executor – execution engine
system_scan – system analysis
config – config loader
- Dangerous command blocking
- Confirmation prompts
- Detailed logs
- PostgreSQL
- Nginx
If you want, I can also: 🔹 make it even shorter, 🔹 rewrite it in a more formal/technical style, 🔹 remove all mentions of AI, 🔹 prepare a “marketing-friendly” or “enterprise-style” version.