Skip to content

Releases: neam-lang/NeamCode

NeamCode v0.3.5.8 — Claude-Native Tools Integration

Choose a tag to compare

@github-actions github-actions released this 14 Mar 09:46

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: anthropic is the active provider. No config changes needed.
  • Smart Deduplication — Builtin bash skill excluded when native bash is active (no collision)
  • Orchestrator RoutingisClaudeNativeTool() detection with dedicated executeClaudeNativeTool() 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: smart

Build 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.8

NeamCode v0.3.5.7 — Terminal-Bench 2.0 Alignment

Choose a tag to compare

@github-actions github-actions released this 12 Mar 07:14

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--prompt flag 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.7

Documentation

NeamCode v0.3.5.6 — Capability Enhancement Release

Choose a tag to compare

@Praveengovianalytics Praveengovianalytics released this 12 Mar 00:11

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.6

v0.3.5.5 — Agentic Security Architecture

Choose a tag to compare

@Praveengovianalytics Praveengovianalytics released this 11 Mar 07:53

Installation

macOS / Linux:

curl -fsSL https://raw.githubusercontent.com/neam-lang/NeamCode/main/install.sh | sh

Windows (PowerShell):

irm https://raw.githubusercontent.com/neam-lang/NeamCode/main/install.ps1 | iex

npm:

npm install -g neamcode

Platform 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.sha256

Full Changelog: v0.3.5.4...v0.3.5.5

NeamCode v0.3.5.4 — HuggingFace Provider

Choose a tag to compare

@Praveengovianalytics Praveengovianalytics released this 11 Mar 03:33

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_KEY or HUGGINGFACE_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: fast

Supported Models (via HuggingFace Inference API)

  • meta-llama/Llama-3.1-8B-Instruct
  • meta-llama/Llama-3.1-70B-Instruct
  • mistralai/Mistral-7B-Instruct-v0.3
  • Qwen/Qwen2.5-72B-Instruct
  • HuggingFaceH4/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 | sh

Windows (PowerShell):

irm https://github.com/neam-lang/NeamCode/releases/download/v0.3.5.4/install.ps1 | iex

Release 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

Choose a tag to compare

@Praveengovianalytics Praveengovianalytics released this 10 Mar 08:22

What's New in v0.3.5.3

Web & PDF Intelligence

  • PDF supportweb_fetch skill now handles binary PDFs via pdf-parse text extraction
  • arXiv integration — PDF URLs auto-redirect to abstract pages for richer content; falls back to raw PDF extraction
  • Internet access enabled by defaultallowInternet and allowTools now default to true

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 | sh

Windows (PowerShell):

irm https://raw.githubusercontent.com/neam-lang/NeamCode/main/install.ps1 | iex

npm:

npm install -g neamcode

Platform 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.sha256

NeamCode v0.3.5.2 — Skill Ecosystem Enhancement

Choose a tag to compare

@Praveengovianalytics Praveengovianalytics released this 09 Mar 12:42

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 /skill Subcommands — 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.gz import/export
  • SkillNet Bridge — HTTP-only integration with SkillNet platform
  • Neam DSL Bridge — Compile Neam skill keyword 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 access
  • src/skills/inspector.ts — Source column, evaluation display
  • src/commands/skill.ts — 2 → 12 subcommands
  • src/core/planner/plan-mode.ts — Graph-informed DAG planning
  • src/config.tsSkillsConfig schema section
  • src/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

Choose a tag to compare

@Praveengovianalytics Praveengovianalytics released this 09 Mar 02:35

NeamCode v0.3.5 — Memory System Upgrade

Installation

npm (recommended)

npm install -g neamcode@0.3.5

macOS / Linux (one-line install)

curl -fsSL https://raw.githubusercontent.com/neam-lang/NeamCode/main/install.sh | sh

Windows (PowerShell)

irm https://raw.githubusercontent.com/neam-lang/NeamCode/main/install.ps1 | iex

From 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.tgz

From source

git clone https://github.com/neam-lang/NeamCode.git
cd NeamCode
npm ci && npm run build
npm link

Highlights

  • 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/*.md with YAML frontmatter paths: 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 --upload

New 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.sha256

Breaking Changes

  • ContextFileLoader constructor now takes an options object instead of positional arguments
  • Memory command interface changed to MemoryCommandDeps with optional autoMemoryReader and markdownStore

Full Changelog

v0.3.4...v0.3.5

NeamCode v0.3.4 — Offline Auto-Recovery

Choose a tag to compare

@Praveengovianalytics Praveengovianalytics released this 06 Mar 23:47

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 machineCLOUD_ACTIVESWITCHING_OFFLINEOLLAMA_ACTIVESWITCHING_ONLINE

Context Memory Preservation

  • Persistent sessions — conversation state saved to ~/.neamcode/sessions/<id>/context.json with 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/tags and /api/show to detect available models
  • 8-tier capability ranking — automatically selects the best local model (llama3.1:70b → gemma)
  • User preferencepreferredModel config 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/doctor now 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


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.4

From source:

git clone https://github.com/Praveengovianalytics/NeamCode.git
cd NeamCode && npm install && npm run build

Full Changelog: Praveengovianalytics/NeamCode@v0.3.3...v0.3.4

v0.3.3

Choose a tag to compare

@Praveengovianalytics Praveengovianalytics released this 06 Mar 23:47

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