惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
腾讯CDC
Jina AI
Jina AI
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
小众软件
小众软件
M
MIT News - Artificial intelligence
MyScale Blog
MyScale Blog
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
月光博客
月光博客
L
LangChain Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
C
Check Point Blog
U
Unit 42
人人都是产品经理
人人都是产品经理

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - carsonDB/CogCore: An API-native TypeScript runti...
CarsonWu · 2026-06-08 · via Hacker News: Show HN

An API-native TypeScript runtime for building agents around your application APIs.

Bring your application APIs. Shape focused agents. Run verified one-off API automation.

TypeScript Backend Runtime

Tutorial

CogCore, short for cognition + core, helps TypeScript applications add AI agents without turning the whole product into an agent framework. Your app keeps its data, UI, permissions, product APIs, and release workflow. CogCore provides the runtime layer for model roles, tools, worker agents, API-aware automation, streaming, persistence, and validation.

Here, API-native means native to your application's own API surface: the functions, schemas, and product rules that agents are allowed to use.

Quick Start

Install:

Create a CogCore runtime, then create a chat agent and add tools from your app. Different roles can use different models, so user chat, execution, and lightweight text work can each optimize for the job:

import { ChatAgent, OpenRouterProvider, createCogCore } from 'cog-core'
import { z } from 'zod'

const cog = createCogCore({
	llm: {
		provider: new OpenRouterProvider({ apiKey: process.env.OPENROUTER_API_KEY }),
		roles: {
			chat: { provider: 'openrouter', model: 'anthropic/claude-sonnet-4.6' },
			execute: { provider: 'openrouter', model: 'openai/gpt-5.4-mini' },
			text: { provider: 'openrouter', model: 'openai/gpt-5.4-mini' },
		},
	},
})

const agent = new ChatAgent({
	cog,
	namespace: 'workspace-assistant',
	systemPrompt: 'You help users work with the current workspace.',
})

agent.addTool({
	name: 'search_docs',
	description: 'Search workspace documents.',
	parameters: z.object({
		query: z.string().min(1),
	}),
	callback: async ({ query }) => {
		const matches = await searchWorkspaceDocs(query)
		return {
			forUser: `Found ${matches.length} documents.`,
			forAI: { matches },
		}
	},
})

For a complete walkthrough with the built-in Chatbox, custom chat UI integration, worker agents, API-aware code execution, and custom tools, see the developer tutorial.

For a backend-free package smoke test, see the minimal demo. It uses a tiny fake provider, so it does not require provider credentials.

Overall Structure

CogCore is usually used as a small runtime inside a larger application:

CogCore runtime flow

Your application
  - UI, routing, data, auth, permissions
  - application APIs and product rules

CogCore runtime
  - ChatAgent for the user-facing conversation
  - focused worker agents for delegated tasks
  - tools that connect agents to approved app capabilities
  - optional API specs for code-based automation

The default agent shape is:

ChatAgent
  -> WorkerAgent roles
  -> CodeAgent
       -> ApiAgent

Common built-in worker roles include:

  • CodeAgent for API-aware one-off automation.
  • ApiAgent for answering questions about a configured API entry point.
  • ResearchAgent for web-backed research.
  • MediaAgent for host-backed asset generation and retrieval.
  • RecallAgent for finding relevant prior chat context.
  • DistillAgent for turning successful runs into reusable skill tips.

You can also create your own worker agents for product-specific jobs, such as a SlideAgent, ReportAgent, DataCleanupAgent, or any other focused role that makes sense for your application.

Why CogCore

  • Built for application APIs. CogCore is strongest when your product already has meaningful APIs, schemas, and rules that agents can safely use. Instead of asking the model to guess how the app works, you expose the exact API surface it is allowed to reason over.
  • Focused agents instead of one giant thread. Work can be delegated to smaller roles with clearer responsibilities, separate prompts, separate model choices, and review points that match the task.
  • Hybrid LLM roles. User chat can use a high-quality planning model, execution can use a stronger code or multimodal model, and text utilities can use a fast low-cost model. This keeps quality, latency, and cost tunable per role.
  • Verified one-off automation. Agents can take read/write actions by producing temporary code for a task. That makes batch processing efficient, flexible across product workflows, and adaptable to whatever API specs your application provides, while the host app still decides what data and writes are allowed.
  • Host control by default. CogCore is a runtime library, not an application framework. It does not replace your UI, database, permission model, or API implementation, so you can use the built-in Chatbox, build a custom chat UI, choose built-in agents, and add application-specific agents with custom review, verify, and validate gates.
  • Skill learning from successful runs. Good outcomes can be distilled into short reusable tips, so similar future tasks can reach a reviewed result faster.

Concepts

Runtime

createCogCore(...) creates the local runtime context shared by agents. It stores the LLM provider, role models, optional embedding and media configuration, and optional API spec loaders. It does not contain your UI, database, permission model, or application API implementation.

Model Roles

CogCore separates LLM usage into role names so one product can use a hybrid model setup:

  • chat for user-facing conversation, intent understanding, planning, and top-level coordination.
  • execute for delegated worker tasks, code generation, multimodal reasoning, and verified action.
  • text for lighter text operations such as retrieval, summarization, and skill distillation.

You can use the same model for every role at first, but CogCore is designed to specialize later as cost, latency, and quality requirements become clearer.

Agents

ChatAgent is the usual root agent for an application chat experience. Worker agents are smaller roles used for focused internal tasks. Built-in workers cover common needs, and application teams can add their own agents for product-specific workflows.

Agents can mix model roles: the root chat can reason with the chat model, delegated workers can run with execute, and supporting summarization or recall can use text. This lets one agent system balance rich conversation with reliable action and cheap background processing.

Tools

Tools are the bridge from agents to your application. A tool has a name, description, schema, and callback. The callback decides what the agent may do, how host permissions are enforced, and what information returns to the user and to the model.

API Specs

For code-based automation, CogCore can use generated API specs from *.api.ts entry points. These specs help agents understand the application APIs they are allowed to call, including the types, functions, and product rules your app chooses to expose.

Sandbox

CodeAgent runs generated JavaScript in a browser-friendly sandbox. The host application still provides the data, permission boundary, write policy, and validation flow, so one-off automation can be powerful without making the model the owner of the product state.

Skill Learning

When a worker result is accepted, CogCore can distill the run into short skill tips. Those tips can be recalled on similar future tasks to reduce repeated mistakes while keeping review and validation in place.

How It Differs

Approach Common fit CogCore difference
General chatbot SDK Add a chat box around model calls Adds runtime roles, worker delegation, tools, persistence, and validation around your app APIs.
Agent framework Build an agent-centered application Stays a runtime library inside your existing TypeScript app, with host-owned UI, permissions, APIs, and release flow.
Workflow automation Repeat known steps Supports verified one-off code actions that can adapt to API specs, batch across data, and still pass through host review.
Tool-calling only Call approved functions from chat Combines tools with worker agents, API exploration, sandboxed code execution, and skill learning.

License

MIT