Releases: neam-lang/NeamCode
Release list
NeamCode v0.3.5.8 — Claude-Native Tools Integration
NeamCode v0.3.5.8 — Claude-Native Tools Integration
Automatically activates Claude's built-in tools when using Anthropic providers, giving Claude access to its specifically-trained bash and str_replace_editor alongside NeamCode's full skill ecosystem.
What's New
- Claude-Native
bash(bash_20250124) — Auto-injected into Anthropic API calls, executed locally with NeamCode's timeout controls (120s default, 600s max) - Claude-Native
str_replace_editor(text_editor_20250124) — 5 commands: view, create, str_replace, insert, undo_edit — with single-level undo buffer - Auto-Injection — Native tools automatically sent when
type: anthropicis the active provider. No config changes needed. - Smart Deduplication — Builtin
bashskill excluded when native bash is active (no collision) - Orchestrator Routing —
isClaudeNativeTool()detection with dedicatedexecuteClaudeNativeTool()handler + error recovery hints - Usage Guideline — 277 new lines: architecture diagram, tool reference, Neam language example, troubleshooting
How It Works
Claude API call → tools: [
{ type: "bash_20250124", name: "bash" }, ← Claude native
{ type: "text_editor_20250124", name: "str_replace_editor" }, ← Claude native
{ name: "file_read", ... }, ← NeamCode builtin
{ name: "glob", ... }, ... ← NeamCode builtin
]
Configuration
# Just set type: anthropic — native tools are automatic
providers:
- name: anthropic-default
type: anthropic
model: claude-sonnet-4-20250514
apiKeyEnv: ANTHROPIC_API_KEY
routing:
tier: smartBuild Stats
- Bundle: dist/index.js 1.20 MB
- Tests: 3,733 passed (+3 new)
- Files Changed: 9 files, +607 / -88 lines
Installation
# macOS (Apple Silicon)
curl -fsSL https://github.com/neam-lang/NeamCode/releases/download/v0.3.5.8/neamcode-v0.3.5.8-macos-arm64.tar.gz | tar xz
# macOS (Intel)
curl -fsSL https://github.com/neam-lang/NeamCode/releases/download/v0.3.5.8/neamcode-v0.3.5.8-macos-x64.tar.gz | tar xz
# Linux (x64)
curl -fsSL https://github.com/neam-lang/NeamCode/releases/download/v0.3.5.8/neamcode-v0.3.5.8-linux-x64.tar.gz | tar xz
# Linux (ARM64)
curl -fsSL https://github.com/neam-lang/NeamCode/releases/download/v0.3.5.8/neamcode-v0.3.5.8-linux-arm64.tar.gz | tar xz
# npm
npm install -g neamcode@0.3.5.8NeamCode v0.3.5.7 — Terminal-Bench 2.0 Alignment
NeamCode v0.3.5.7 — Terminal-Bench 2.0 Alignment
10-phase CI/benchmark harness improvement based on Terminal-Bench 2.0 analysis (4 runs, 80 tasks, best score 15%).
What's New
- CI Mode Auto-Detection —
--promptflag or non-TTY stdin triggers autonomous execution mode - Agent Loop Capacity — maxTurns scaled 25→200 in CI mode for complex multi-step tasks
- Bash Timeout Scaling — default 30s→120s, max 120s→600s for package installs/builds
- Token Output Limit — maxTokens 4096→16384 in CI mode to prevent truncated code output
- Agentic System Prompt — 10 CRITICAL EXECUTION RULES injected in autonomous mode
- Completion Verification Loop — synthetic verification prompt before finishing in CI mode
- Parallel Tool Execution — infrastructure ready (config field, sequential for safety)
- Error Recovery Hints — 7 pattern-matched hints (EACCES, ENOENT, SIGTERM, ENOSPC, ECONNREFUSED)
- Token Budget — session budget 100K→500K, config-driven maxTurns/maxTokens
New CLI Flags
--max-turns <n> Maximum agent loop turns (default: 25, CI: 200)
--max-tokens <n> Maximum tokens per LLM response (default: 4096, CI: 16384)
--bash-timeout <ms> Default bash timeout in ms (default: 120000)
--bash-max-timeout <ms> Maximum bash timeout in ms (default: 600000)
--no-addon Alias for --no-native (disable native addon)
Projected Impact
| Metric | Before | After |
|---|---|---|
| Terminal-Bench Score | 15% | 56% (projected) |
| Max Turns (CI) | 25 | 200 |
| Max Tokens (CI) | 4,096 | 16,384 |
| Bash Timeout | 30s / 120s | 120s / 600s |
| Token Budget | 100K | 500K |
Build Stats
- Bundle: dist/index.js 1.20 MB (+10 KB from v0.3.5.6)
- Tests: 3,748 passed | 1 failed (pre-existing Gemini quota)
- Files Changed: 14 files, +3,896 / -58 lines
Installation
# macOS (Apple Silicon)
curl -fsSL https://github.com/neam-lang/NeamCode/releases/download/v0.3.5.7/neamcode-v0.3.5.7-macos-arm64.tar.gz | tar xz
# macOS (Intel)
curl -fsSL https://github.com/neam-lang/NeamCode/releases/download/v0.3.5.7/neamcode-v0.3.5.7-macos-x64.tar.gz | tar xz
# Linux (x64)
curl -fsSL https://github.com/neam-lang/NeamCode/releases/download/v0.3.5.7/neamcode-v0.3.5.7-linux-x64.tar.gz | tar xz
# Linux (ARM64)
curl -fsSL https://github.com/neam-lang/NeamCode/releases/download/v0.3.5.7/neamcode-v0.3.5.7-linux-arm64.tar.gz | tar xz
# npm
npm install -g neamcode@0.3.5.7Documentation
NeamCode v0.3.5.6 — Capability Enhancement Release
NeamCode v0.3.5.6 — Capability Enhancement Release
Full implementation of the v0.3.5.6 specification: 8 phases, 14 sprints, 65 new source files, 10,287 lines added, 3,748 tests passing.
What's New
P1: Plugin System
- Plugin loader with package.json discovery and lifecycle hooks
- HookRunner with 22 event types, 5s timeout, fail-open behavior
- Plugin sandbox with restricted globals and tool adapters (Zod schemas)
P2: Provider Expansion + Model Switching
- 6 new providers: AWS Bedrock, Azure OpenAI, Vertex AI, Groq, GitHub Copilot, OpenRouter
- ModelManager for mid-session model switching with audit logging
- SmallModelResolver for lightweight internal tasks (titles, summaries, compaction)
P3: Server Mode (Headless)
- Native Node.js HTTP server with SSE streaming
- Token-bucket rate limiter, OpenAPI 3.1 spec
P4: Tool Enhancements + Doom Loop Detection
- DoomLoopDetector — SHA-256 hash tracking, warn at 3, break at 5 identical calls
- LspDiagnosticsManager — TypeScript/Python/Rust language server integration
- patch_apply and ask_user built-in skills
P5: Session Management + UX
- MultiSessionManager — create, switch, delete sessions with LRU eviction
- FileReferenceResolver — @file.ts#L10-25 syntax for inline file references
- GitSnapshotManager — /undo and /redo via git write-tree/read-tree
- SessionExporter — JSON and Markdown export with automatic secret redaction
- DiffDisplay — ANSI-colored unified diff rendering
- ExternalEditor — $EDITOR integration for multi-line input
P6: Config Intelligence
- VariableResolver — {env:VAR}, {env:VAR:default}, {file:path} interpolation
- RemoteConfigLoader — HTTPS-only remote config with caching
- CodeFormatter — extension-based auto-formatting
- FilePermissionPatterns — glob-based file access control
P7: Agent Enhancements
- MentionParser — @agent delegation syntax
- AgentMcpFilter — per-agent MCP tool filtering (wildcard, specific, exclude)
- AutoAgentManager — LLM-powered session titles, summaries, and context compaction
P8: ACP Protocol + MCP CLI
- ACPServer — JSON-RPC 2.0 protocol for editor integration
- AcpNotifier — streaming text deltas, tool calls, permission requests, diagnostics
- /mcp CLI — list, info, debug, restart, auth, logout, add subcommands
- McpDebugLogger — ring buffer for MCP message inspection
- SystemNotifier — cross-platform desktop notifications
Test Coverage
- 3,748 tests passing across 321 test files
- 92 new E2E tests validating full integration workflows
- 117 new unit tests for v0.3.5.6 source modules
Downloads
| Platform | File |
|---|---|
| macOS (Apple Silicon) | neamcode-v0.3.5.6-macos-arm64.tar.gz |
| macOS (Intel) | neamcode-v0.3.5.6-macos-x64.tar.gz |
| Linux (x64) | neamcode-v0.3.5.6-linux-x64.tar.gz |
| Linux (ARM64) | neamcode-v0.3.5.6-linux-arm64.tar.gz |
| Windows (x64) | neamcode-v0.3.5.6-windows-x64.zip |
Install
npm install -g neamcode@0.3.5.6v0.3.5.5 — Agentic Security Architecture
Installation
macOS / Linux:
curl -fsSL https://raw.githubusercontent.com/neam-lang/NeamCode/main/install.sh | shWindows (PowerShell):
irm https://raw.githubusercontent.com/neam-lang/NeamCode/main/install.ps1 | iexnpm:
npm install -g neamcodePlatform Packages
| Platform | Architecture | Package |
|---|---|---|
| macOS | Apple Silicon (arm64) | neamcode-v0.3.5.5-macos-arm64.tar.gz |
| macOS | Intel (x86_64) | neamcode-v0.3.5.5-macos-x64.tar.gz |
| Linux | x86_64 | neamcode-v0.3.5.5-linux-x64.tar.gz |
| Linux | arm64 | neamcode-v0.3.5.5-linux-arm64.tar.gz |
| Windows | x86_64 | neamcode-v0.3.5.5-windows-x64.zip |
| npm | Any | neamcode-0.3.5.5.tgz |
Verify Download
sha256sum -c checksums.sha256Full Changelog: v0.3.5.4...v0.3.5.5
NeamCode v0.3.5.4 — HuggingFace Provider
What's New
HuggingFace Inference API is now NeamCode's 12th LLM provider.
HuggingFace Provider
- Full chat and streaming support via HuggingFace's OpenAI-compatible Messages API
- Tool calling support for compatible models
- Default endpoint:
https://router.huggingface.co/v1 - Environment variable:
HF_API_KEYorHUGGINGFACE_API_KEY - Default model:
meta-llama/Llama-3.1-8B-Instruct - Routing tier:
fast— ideal for quick tasks at zero cost
Configuration
providers:
- name: huggingface-default
type: huggingface
model: meta-llama/Llama-3.1-8B-Instruct
apiKeyEnv: HF_API_KEY
routing:
tier: fastSupported Models (via HuggingFace Inference API)
meta-llama/Llama-3.1-8B-Instructmeta-llama/Llama-3.1-70B-Instructmistralai/Mistral-7B-Instruct-v0.3Qwen/Qwen2.5-72B-InstructHuggingFaceH4/zephyr-7b-beta- Any model hosted on HuggingFace Inference API
Provider Count: 12
Ollama, OpenAI, Anthropic, Gemini, DeepSeek, Mistral, HuggingFace, MiniMax, Kimi, Qwen, OpenAI-Compatible, Mock
Tests
- 7 new unit tests for HuggingFace provider
- Lazy-loader test updated
- Integration health check + provider pool tests updated
- Live verified: chat (1480ms) and streaming (1869ms) with Llama-3.1-8B
Install
macOS / Linux:
curl -fsSL https://github.com/neam-lang/NeamCode/releases/download/v0.3.5.4/install.sh | shWindows (PowerShell):
irm https://github.com/neam-lang/NeamCode/releases/download/v0.3.5.4/install.ps1 | iexRelease Packages
| Platform | Package |
|---|---|
| macOS arm64 | neamcode-v0.3.5.4-macos-arm64.tar.gz |
| macOS/Linux installer | install.sh |
| Windows installer | install.ps1 |
Full Changelog: v0.3.5.3...v0.3.5.4
NeamCode v0.3.5.3 — Web PDF Support, Extended Thinking & Observability
What's New in v0.3.5.3
Web & PDF Intelligence
- PDF support —
web_fetchskill now handles binary PDFs viapdf-parsetext extraction - arXiv integration — PDF URLs auto-redirect to abstract pages for richer content; falls back to raw PDF extraction
- Internet access enabled by default —
allowInternetandallowToolsnow default totrue
User Interactiveness (UI)
- Extended thinking with
<think>tag rendering - Markdown streaming with syntax highlighting
- Status bar with token/cost/model display
- Observability dashboard (
/observe) with real-time metrics
Previous (v0.3.5.2)
- SKILL.md format, skill graph, search, and composition engine
Installation
macOS / Linux:
curl -fsSL https://raw.githubusercontent.com/neam-lang/NeamCode/main/install.sh | shWindows (PowerShell):
irm https://raw.githubusercontent.com/neam-lang/NeamCode/main/install.ps1 | iexnpm:
npm install -g neamcodePlatform Packages
| Platform | Architecture | Package | Size |
|---|---|---|---|
| macOS | Apple Silicon (arm64) | neamcode-v0.3.5.3-macos-arm64.tar.gz |
39 MB |
| macOS | Intel (x86_64) | neamcode-v0.3.5.3-macos-x64.tar.gz |
39 MB |
| Linux | x86_64 | neamcode-v0.3.5.3-linux-x64.tar.gz |
53 MB |
| Linux | arm64 | neamcode-v0.3.5.3-linux-arm64.tar.gz |
53 MB |
| Windows | x86_64 | neamcode-v0.3.5.3-windows-x64.zip |
46 MB |
| npm | Any | neamcode-0.3.5.3.tgz |
2.3 MB |
Verify Download
sha256sum -c checksums.sha256NeamCode v0.3.5.2 — Skill Ecosystem Enhancement
What's New in v0.3.5.2
Complete Skill Ecosystem Enhancement — portable SKILL.md format, relationship graph, combined search, composition & chaining.
Highlights
- SKILL.md Format — YAML frontmatter + Markdown body, portable skill definition inspired by SkillNet
- Progressive 3-Stage Loading — Discovery → Activation → Execution for fast startup
- 5-Dimension Evaluation — Safety, Completeness, Executability, Maintainability, Cost Awareness
- Skill Relationship Graph — 4 relation types (
similar_to,belong_to,compose_with,depend_on) with confidence scoring - Combined Search Engine — Keyword + Semantic + Trigger matching with deduplication and re-ranking
- Graph-Informed Planning — DAG builder uses skill graph for topological ordering (Kahn's algorithm)
- Pipeline Composition — Chain multiple skills into reusable meta-skills
- 12
/skillSubcommands — list, info, search, create, evaluate, install, uninstall, export, graph, compose, update - Quality Gate — Blocks skill registration when any dimension is rated "poor"
- Local Repository — Install/uninstall with atomic writes,
.tar.gzimport/export - SkillNet Bridge — HTTP-only integration with SkillNet platform
- Neam DSL Bridge — Compile Neam
skillkeyword syntax to SKILL.md format
New Modules (38 files)
| Module | Files |
|---|---|
| Format & Parser | format/types.ts, parser.ts, validator.ts, template.ts, loader.ts |
| Executor | executor-md.ts |
| Creators | prompts.ts, prompt-creator.ts, trace-creator.ts, github-creator.ts, doc-creator.ts, orchestrator.ts |
| Evaluator | rubric.ts, evaluator.ts, dedup.ts, gate.ts |
| Graph | graph.ts, analyzer.ts, query.ts, persistence.ts, visualizer.ts |
| Search | keyword.ts, semantic.ts, engine.ts, trigger.ts |
| Repository | local.ts, import-export.ts, skillnet-bridge.ts, hub-client.ts |
| Composer | dag-builder.ts, pipeline.ts, substitution.ts |
| Bridge | bridge/cognitive/skills.ts |
Modified Files (6)
src/skills/registry.ts— SKILL.md loading, metadata accesssrc/skills/inspector.ts— Source column, evaluation displaysrc/commands/skill.ts— 2 → 12 subcommandssrc/core/planner/plan-mode.ts— Graph-informed DAG planningsrc/config.ts—SkillsConfigschema sectionsrc/index.tsx— Ecosystem initialization wiring
Tests
- 259 tests passing across 21 test files
- 60 unit tests (parser, evaluator, graph, search)
- 12 end-to-end tests (full lifecycle pipeline)
- 9 integration tests (registry, graph+search+DAG, repository)
- 0 regressions in existing test suite
Specifications
v0.3.5.2_NeamCode_Skills_Enhancement_Requirement_Specification.MD(2,375 lines)v0.3.5.2_NeamCode_Skills_Enhancement_Implementation_Specification.MD(4,858 lines)
Full Changelog: v0.3.5...v0.3.5.2
NeamCode v0.3.5 — Memory System Upgrade
NeamCode v0.3.5 — Memory System Upgrade
Installation
npm (recommended)
npm install -g neamcode@0.3.5macOS / Linux (one-line install)
curl -fsSL https://raw.githubusercontent.com/neam-lang/NeamCode/main/install.sh | shWindows (PowerShell)
irm https://raw.githubusercontent.com/neam-lang/NeamCode/main/install.ps1 | iexFrom release tarball
curl -LO https://github.com/neam-lang/NeamCode/releases/download/v0.3.5/neamcode-0.3.5.tgz
npm install -g neamcode-0.3.5.tgzFrom source
git clone https://github.com/neam-lang/NeamCode.git
cd NeamCode
npm ci && npm run build
npm linkHighlights
- Auto Memory System — Persistent MEMORY.md with 200-line cap, topic file overflow, and project-hash isolation
- 6-Tier NEAMCODE.md Hierarchy — managed → global → ancestor → project → local → config context loading
- @path Import Syntax — Expand referenced files inline with cycle detection, max depth 5, 50KB limit
- Rules Engine —
.neamcode/rules/*.mdwith YAML frontmatterpaths:for path-scoped rule loading - Compaction Resilience — System prompt fully rebuilt after context window compaction
- JSON → Markdown Migration — Legacy auto.json memories auto-converted to MEMORY.md format
Build & Release Scripts
Reusable scripts for CI and local development:
| Script | Purpose |
|---|---|
scripts/build.sh |
TypeScript + native build with preflight checks |
scripts/package.sh |
Create platform archive (macOS/Linux/Windows) |
scripts/package.ps1 |
Windows PowerShell packaging |
scripts/checksums.sh |
Combine per-platform SHA256 checksums |
scripts/release-local.sh |
Full local release pipeline with --upload |
# Local release
./scripts/release-local.sh --skip-test --npm-tarball --uploadNew Components
| Module | Description |
|---|---|
src/memory/auto-reader.ts |
Loads MEMORY.md at startup with line-cap truncation |
src/memory/auto-writer.ts |
Analyzes conversations and persists learnings at shutdown |
src/memory/markdown-store.ts |
CRUD for Markdown memory with topic file overflow |
src/memory/migrator.ts |
Converts legacy JSON memory to Markdown format |
src/memory/project-hash.ts |
Deterministic project hash for memory isolation |
src/context/import-resolver.ts |
Resolves @path imports with cycle/depth protection |
src/context/rules-loader.ts |
Loads .neamcode/rules/ with path-scoping support |
src/core/context-builder.ts |
Assembles system prompt from all context sources |
CI Status
All 9 CI jobs passing across:
- TypeScript: Node 18, 20, 22 (Ubuntu)
- Native: macOS 14 (ARM64), Ubuntu 22.04, Windows 2022 × Node 20, 22
Test Coverage
- 2741 tests passing, 16 skipped (provider tests without API keys)
- 228 test files across unit, integration, and E2E suites
Platform Packages
| Platform | Architecture | Package |
|---|---|---|
| macOS | Apple Silicon (arm64) | neamcode-v0.3.5-macos-arm64.tar.gz |
| macOS | Intel (x86_64) | neamcode-v0.3.5-macos-x64.tar.gz |
| Linux | x86_64 | neamcode-v0.3.5-linux-x64.tar.gz |
| Linux | arm64 | neamcode-v0.3.5-linux-arm64.tar.gz |
| Windows | x86_64 | neamcode-v0.3.5-windows-x64.zip |
| npm | Any | neamcode-0.3.5.tgz |
Verify Download
sha256sum -c checksums.sha256Breaking Changes
ContextFileLoaderconstructor now takes an options object instead of positional arguments- Memory command interface changed to
MemoryCommandDepswith optionalautoMemoryReaderandmarkdownStore
Full Changelog
NeamCode v0.3.4 — Offline Auto-Recovery
NeamCode v0.3.4 — Offline Auto-Recovery with Ollama Fallback
Never lose your conversation. NeamCode now automatically detects internet loss and seamlessly switches to a local Ollama model — preserving your full conversation context. When connectivity returns, it switches back to cloud without missing a beat.
Highlights
Automatic Cloud ↔ Ollama Switching
- TCP health probing — lightweight socket checks (no HTTP, no auth, no cost) detect connectivity changes in real time
- Flap protection — 2 consecutive failures → offline, 3 consecutive successes + 60s dwell time → online (prevents rapid toggling)
- Error classification — only network errors (ECONNREFUSED, ETIMEDOUT, ENOTFOUND) trigger fallback; auth (401/403) and rate-limit (429) errors are handled separately
- 4-state machine —
CLOUD_ACTIVE→SWITCHING_OFFLINE→OLLAMA_ACTIVE→SWITCHING_ONLINE
Context Memory Preservation
- Persistent sessions — conversation state saved to
~/.neamcode/sessions/<id>/context.jsonwith atomic writes and 0600 permissions - Sliding window compression — keeps last N message pairs verbatim, summarizes older messages to fit local model's context window
- Cross-provider continuity — context transfers seamlessly between cloud and Ollama without data loss
Smart Model Selection
- Ollama auto-discovery — probes
/api/tagsand/api/showto detect available models - 8-tier capability ranking — automatically selects the best local model (llama3.1:70b → gemma)
- User preference —
preferredModelconfig option to override automatic selection
New Slash Commands
| Command | Description |
|---|---|
/offline [switch|models] |
Force switch to Ollama or list available local models |
/online |
Force switch back to cloud provider |
/status |
Show connectivity state, provider info, context stats, switch history |
StatusBar Enhancements
- Connectivity dot — green (online), yellow (degraded), red (offline) indicator
- Offline mode display — shows
[offline] ollama/<model>when running locally
Doctor Check
- Ollama availability —
/doctornow checks if Ollama is running and reports available model count
Configuration
Add to your neamcode.json:
{
"offline": {
"enabled": true,
"autoSwitch": true,
"autoRecover": true,
"ollamaHost": "http://localhost:11434",
"preferredModel": "",
"health": {
"interval": 30,
"timeout": 3,
"failuresToOffline": 2,
"successesToOnline": 3,
"minDwellTime": 60
},
"context": {
"strategy": "sliding",
"slidingWindow": 10,
"maxLocalTokens": 0,
"persist": true,
"sessionTtl": 7
}
}
}All settings have sensible defaults — offline mode works out of the box with zero configuration if Ollama is installed.
Architecture
┌─────────────────────────────────────────────────┐
│ ProviderManager │
│ ┌──────────┐ ┌──────────────┐ ┌───────────┐ │
│ │ Health │ │ Context │ │ Ollama │ │
│ │ Monitor │ │ Store │ │ Discovery │ │
│ │ (TCP probe│ │ (persistent) │ │ (ranked) │ │
│ └────┬─────┘ └──────┬───────┘ └─────┬─────┘ │
│ │offline/online │save/load │select │
│ ┌────▼────────────────▼────────────────▼─────┐ │
│ │ State Machine (4 states) │ │
│ │ CLOUD_ACTIVE ↔ SWITCHING ↔ OLLAMA_ACTIVE │ │
│ └────────────────────┬───────────────────────┘ │
│ │ │
│ ┌────────────────────▼───────────────────────┐ │
│ │ Context Compressor │ │
│ │ full → sliding window → summarize │ │
│ └────────────────────────────────────────────┘ │
└─────────────────────────────────────────────────┘
Test Coverage
- 77 new unit tests across 7 test files covering all offline modules
- 109 total tests pass including updated banner and startup tests
- Modules tested: token-counter, health-monitor, ollama-discovery, context-store, context-compressor, provider-manager, commands
Documentation
docs/v0.3.4_NeamCode_Autorecovery_requirement_specification.MD— 50+ functional requirementsdocs/v0.3.4_NeamCode_Autorecovery_implementation_specification.MD— Full implementation spec with interfaces, state diagrams, and integration points
Stats
- 26 files changed, 4,927 insertions
- 9 new source modules in
src/offline/ - 7 new test files in
tests/unit/offline/ - Build size: 975.93 KB (
dist/index.js)
Installation
npm:
npm install -g neamcode@0.3.4From source:
git clone https://github.com/Praveengovianalytics/NeamCode.git
cd NeamCode && npm install && npm run buildFull Changelog: Praveengovianalytics/NeamCode@v0.3.3...v0.3.4
v0.3.3
NeamCode v0.3.3
Installation
macOS / Linux (one-line install):
Windows (PowerShell):
npm:
Packages
| Platform | Architecture | Package |
|---|---|---|
| macOS | Apple Silicon (arm64) | |
| macOS | Intel (x86_64) | |
| Linux | x86_64 | |
| Linux | arm64 | |
| Windows | x86_64 |
Verify Download
Full Changelog: Praveengovianalytics/NeamCode@v0.3.2...v0.3.3