Salesforce Pitches Agentforce for Enterprise Agents as MarkTechPost Ranks Local LLM Harnesses
Salesforce detailed Agentforce enterprise tooling and Southwest results; MarkTechPost ranked open-source local LLM harnesses.
MarkTechPost reported that Agentforce anchors agents inside Salesforce Data Cloud and Customer 360, connects external endpoints through the Model Context Protocol and third-party B2B data ecosystems, and packages lifecycle tools into one platform. Its Testing Center generates synthetic edge cases, queries and performance benchmarks, and developers can run regressions through a UI or headlessly in CI/CD pipelines using AI coding tools such as Claude Code and Cursor.
Agent Optimizer listens to live conversational traffic, identifies instruction friction points and feeds prompt-tuning recommendations into the builder workflow, the report said. Agentforce renders dynamic Lightning components across web chat, SMS and voice, including interactive seat-selection maps, live flight pickers and secure payment interfaces, with behavior adapting to each channel. The Builder combines probabilistic natural language processing with deterministic rules, so actions such as charging a credit card or rebooking a seat cannot fire until prerequisites are validated. Tableau dashboards provide session traces, action-tree traversals and proactive alerts, while multi-agent orchestration lets specialized sub-agents and external autonomous agents collaborate on complex workflows.
Southwest Airlines, which handles more than 20 million customer inquiries annually with 2,600 service representatives, began a phased Agentforce rollout in November 2025 across its Help Center and mobile app, according to MarkTechPost. The airline deployed the system for baggage policies, Rapid Rewards loyalty questions and flight disruptions. It capped clarification attempts at two before escalation, and critical triggers such as safety warnings or legal disputes bypass the LLM and hand off directly to human CARE specialists. Enhanced Chat streams the full conversation transcript and user metadata to the human agent's console when escalation occurs. Agentforce Observability tracks escalation triggers to refine prompt scripts. MarkTechPost reported projected annual operational savings of $6 million, a 7x return on investment, a 45% autonomous resolution rate across more than 2 million interactions and a 900% jump in customer satisfaction metrics.
In a separate Sept. 18, 2026, report, MarkTechPost ranked 11 open-source agent harnesses for local LLMs by OSI-approved license, documented local runtimes, maintenance status and safety controls. The report said an agent is a model plus a harness, and that the harness matters more with local models because small context windows and weaker tool calling expose design flaws. It listed three rules: raise the context window first, pick a model that supports tool calling, and budget memory honestly. Ollama's context-length documentation says defaults depend on VRAM, at 4k under 24 GiB, 32k from 24 to 48 GiB and 256k at 48 GiB or more, while agents and coding tools should get at least 64,000 tokens; the fix is to run OLLAMA_CONTEXT_LENGTH=64000 ollama serve. Goose's provider documentation says models without tool calling can only do chat completion, and Pi's documentation notes that llama.cpp's --jinja flag enables compatible chat templates and tool calling. Cline's local guide maps 16 to 32GB RAM to small quantized models, 32 to 64GB to mid-size coding models and 64GB or more to larger models, while Ollama's Hermes page lists gemma4 at about 16 GB VRAM and qwen3.6 at about 24 GB VRAM.
The ranking's top five were OpenCode, Pi, Goose, Cline and OpenHands. OpenCode documents local paths through Ollama, LM Studio and llama.cpp's llama-server, uses the @ai-sdk/openai-compatible package with a local baseURL, claims support for more than 75 providers and can be set up with one command, according to the report. It ships a build agent with full access and a read-only plan agent that asks before running bash commands. Pi is minimalist, giving the model four tools—read, write, edit and bash—and deliberately skipping MCP, sub-agents, plan mode and permission popups, which arrive through TypeScript extensions and packages. Pi supports the llama.cpp router server and can manage models with /llama; Ollama users can run ollama launch pi. Pi has no built-in permission system and runs with the user's permissions, so its README recommends Docker, a micro-VM extension or a policy sandbox for isolation. Earendil acquired Pi in April 2026 and creator Mario Zechner joined the company; The Pragmatic Engineer reported that Pi is the foundation OpenClaw is built on.
Goose documents the most local runtimes of any harness in the ranking, including Ollama, LM Studio, Docker Model Runner, Ramalama and Atomic Chat, and supports vLLM and KServe through an OpenAI-compatible provider, according to MarkTechPost. The Linux Foundation formed the Agentic AI Foundation on Dec. 9, 2025, with Block contributing goose; the repo is now at aaif-goose/goose. Goose is written in Rust and ships a desktop app, a CLI and an API, with 70+ MCP extensions cited in its README. Cline is the strongest editor-based option, with a local guide recommending 'Use Compact Prompt,' focused tasks and fresh sessions when context grows; every file edit and command needs approval by default, and Plan and Act modes separate strategy from execution. Its JetBrains plugins are not open-sourced, while the VS Code extension, CLI and SDK are in an Apache-2.0 repo. OpenHands publishes specific local guidance, recommending Qwen3.6-35B-A3B as the first local model to try as of May 21, 2026, with quantized variants needing at least 24GB of VRAM or an Apple Silicon Mac with 64GB of unified memory. It recommends context length of at least 22,000 tokens, preferably 32,768, and warns that Ollama's 4,096 default cannot fit the system prompt. It also notes that LM Studio binds to 127.0.0.1 by default, so a Dockerized OpenHands cannot reach it unless 'Serve on Local Network' is enabled.