
Security News
crates.io Ships Security Tab and Tightens Publishing Controls
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.
@cloudbase/agent-examples-agents-server
Advanced tools
Follow these steps to run the LangGraph agent backend that powers the Agentic Chat example. Commands assume you are in the monorepo root unless noted.
Follow these steps to run the LangGraph agent backend that powers the Agentic Chat example. Commands assume you are in the monorepo root unless noted.
From the TypeScript workspace root (AG-Kit/typescript-sdk):
pnpm installpnpm run buildIn this directory (AG-Kit/typescript-sdk/packages/examples/agents/server):
.env.example to .env (or create .env manually)OPENAI_API_KEYOPENAI_MODELOPENAI_BASE_URLStill inside AG-Kit/typescript-sdk/packages/examples/agents/server, run:
pnpm installpnpm run buildpnpm run startThe server exposes endpoints under /v1/aibot/bots/ that the web frontend consumes.
Before building the Docker image, ensure you have:
Built the entire monorepo locally
# From the typescript-sdk root directory
cd ../../../
pnpm install
pnpm build
Prepared Environment Variables
# Copy and configure environment variables
cp .env.example .env
# Edit .env and set your OPENAI_API_KEY
Build the Docker Image
# From the server directory
docker build -t ag-kit-server .
Run the Container
# Run with environment variables
docker run -p 9000:9000 \
-e OPENAI_API_KEY=your_api_key_here \
-e NODE_ENV=production \
ag-kit-server
# Or run with .env file
docker run -p 9000:9000 --env-file .env ag-kit-server
Access the Server
http://localhost:9000http://localhost:9000/healthFAQs
Follow these steps to run the LangGraph agent backend that powers the Agentic Chat example. Commands assume you are in the monorepo root unless noted.
The npm package @cloudbase/agent-examples-agents-server receives a total of 403 weekly downloads. As such, @cloudbase/agent-examples-agents-server popularity was classified as not popular.
We found that @cloudbase/agent-examples-agents-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 14 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.

Research
/Security News
A Chrome extension claiming to hide Amazon ads was found secretly hijacking affiliate links, replacing creators’ tags with its own without user consent.

Security News
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.