
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
gortex-cli
Advanced tools
Interactive CLI with tabbed interface and AI integration: complete Git workflow with intelligent conventional commit generation
CLI for building reliable, assisted, and auditable conventional commits.
Gortex CLI makes the commit phase as rigorous as the implementation phase.
The outcome is short, precise, review-friendly commits without leaving the terminal.
a, i).gortexrc configuration (Cosmiconfig) to tune AI providers, conventions, and git preferences| Layer | Role | Key tech |
|---|---|---|
| Domain | Entities, value objects, contracts | TypeScript |
| Application | Use cases and orchestration | Services, DTOs, validation |
| Infrastructure | Git, AI providers, DI | simple-git, Ollama/OpenAI/Mistral adapters |
| Presentation | CLI interface | Ink, Commander, React components |
Reference points:
docs/ARCHITECTURE.md# npm
npm install -g gortex-cli
# pnpm (recommended)
pnpm add -g gortex-cli
# yarn
yarn global add gortex-cli
# bun
bun add -g gortex-cli
# try without installing
npx gortex-cli
Run inside a Git repository:
gortex
The guided flow covers:
Helpful commands:
gortex --help
gortex help-format
curl -fsSL https://ollama.com/install.sh | sh
ollama pull mistral-small:24b-instruct-2501-q4_K_M
ollama serve # http://localhost:11434
NEW in v2.1+: GORTEX CLI now defaults to Mistral Small for optimal performance:
Alternative models:
magistral:24b-small-2506-q4_K_M – Reasoning-focused (slower, better for complex logic)mistral-nemo:12b-instruct-2407-q4_K_M – Balanced for mid-range hardwaremistral:7b-instruct-q4_K_M – Lightweight for resource-constrained laptopsFor best results, configure Ollama to keep models in memory:
# Keep model loaded indefinitely (recommended)
export OLLAMA_KEEP_ALIVE=-1
# Or set in your shell profile (~/.bashrc, ~/.zshrc)
echo 'export OLLAMA_KEEP_ALIVE=-1' >> ~/.bashrc
Why? By default, Ollama unloads models after 5 minutes. Keeping them in memory:
Tips:
ollama serve running for instant availabilitytemperature: 0.3, max_tokens: 300, num_ctx: 4096| Type | Purpose |
|---|---|
feat | new feature |
fix | bug fix |
docs | documentation |
style | formatting / non-functional |
refactor | internal restructuring |
perf | performance |
test | tests |
build | build/package |
ci | continuous integration |
chore | maintenance |
Examples:
feat(auth): add OAuth2 authentication
fix(api): resolve timeout on large requests
docs(readme): update installation instructions
refactor(core): simplify error handling
Breaking change:
feat(api)!: change authentication method
BREAKING CHANGE: Previous auth tokens are now invalid
pnpm install, pnpm devpnpm test, pnpm typecheck, pnpm lint before submittingAdditional docs:
CONTRIBUTING.mddocs/ARCHITECTURE.mddocs/USE_CASES.mddocs/MIGRATION_GUIDE.mdRepository overview:
gortex-cli/
├── src/
│ ├── domain/
│ ├── application/
│ ├── infrastructure/
│ ├── components/
│ └── commands/
├── docs/
└── __tests__/
MIT © Arthur Jean
FAQs
Interactive CLI with tabbed interface and AI integration: complete Git workflow with intelligent conventional commit generation
The npm package gortex-cli receives a total of 10 weekly downloads. As such, gortex-cli popularity was classified as not popular.
We found that gortex-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.