LOCAL-FIRST · LINUX + DEVOPS

Ask the system
before you touch it.

Noso turns plain-English operational questions into safer command guidance—with risk, confidence, expected output, and the evidence behind the answer.

PUBLIC RELEASE LINUX AMD64 + ARM64 LOCAL BY DEFAULT
NOSO / OPERATOR SESSION READY

$ cli-helper "what process is using port 8080"

COMMAND ss -ltnp | grep :8080
RISKLOW
CONFIDENCEHIGH
WHY

Inspect TCP listeners and identify the process bound to the requested port.

NEXT Check the owning service only if the listener is unexpected.

01 / THE IDEA

Operational speed should not come at the cost of operational judgment. Noso keeps the operator in control while making the next safe move easier to see.

02 / INCIDENT LOOP

From alert
to evidence.

Noso focuses on the part of incident response where context gets lost: turning a symptom into a constrained probe, preserving what was learned, and advancing without repeating work.

01

Ingest

Capture an alert or operator report with source, severity, and labels.

02

Troubleshoot

Rank likely service, container, or Kubernetes causes and choose a read-only probe.

03

Observe

Fold command evidence back into the incident instead of starting over.

04

Resolve

Preserve findings and resolution context as a local operational record.

03 / OPERATING MODEL

Useful without
becoming opaque.

LOCAL-FIRST

Your environment is the source of truth.

Core guidance is deterministic and grounded in the tools available on the machine. Network access is not required for the primary workflow.

EXPLICIT RISK

Every command carries context.

Risk, confidence, expected output, and follow-up guidance make it easier to review a command before acting.

OPTIONAL AI

Models assist; policy stays in charge.

An optional local Ollama service can help classify ambiguous intent while command generation and safety labels remain in Noso.

04 / INSTALL

One binary.
No account.

Download the current Linux release, verify it against the published checksums, and place it on your path.

curl -Lo cli-helper https://github.com/NdumLab/noso/releases/latest/download/cli-helper-linux-amd64
curl -sL https://github.com/NdumLab/noso/releases/latest/download/SHA256SUMS | sha256sum --check --ignore-missing
chmod +x cli-helper
sudo mv cli-helper /usr/local/bin/
FIRST RUN cli-helper "show disk free space"

05 / OPEN SOURCE

Read the code.
Try the workflow.

Explore on GitHub Report an issue