
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
agents-manager
Advanced tools
A modern web application built with Astro that allows you to create and manage AI-powered coding tasks using Claude Code SDK. Each task automatically clones a repository instance, initializes it, and lets Claude Code implement your requirements while prov
A modern web application built with Astro that allows you to create and manage AI-powered coding tasks using Claude Code SDK. Each task automatically clones a repository instance, initializes it, and lets Claude Code implement your requirements while providing a real-time chat interface to interact with the AI agent.
src/actions/
): Type-safe backend API for task managementsrc/lib/store.ts
): In-memory data management (can be replaced with a database)src/lib/git-utils.ts
): Repository cloning and management utilitiessrc/lib/claude-code.ts
): Integration with Claude Code SDKsrc/components/
): Interactive UI componentsClone and navigate to the agents-manager package:
cd packages/agents-manager
Install dependencies:
pnpm install
Create environment file:
cp .env.example .env
Configure your environment variables in .env
:
# Required: Anthropic API Key
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Required: Source repository URL (the repo to clone for each task)
SOURCE_REPO_URL=https://github.com/your-username/your-repo.git
# Optional: Custom paths
REPO_INSTANCES_PATH=./repo-instances
PORT=4000
HOST=localhost
Start the development server:
pnpm dev
The application will be available at http://localhost:4000
.
Build and start the production server:
pnpm build
pnpm preview
pending → cloning → running → completed/failed
The application uses Astro Server Actions for type-safe backend operations:
createTask({ title, description })
- Create a new taskstartTask({ taskId })
- Start a pending taskcontinueSession({ taskId, message })
- Send message to Claude CodestopSession({ taskId })
- Stop a running taskdeleteTask({ taskId })
- Delete a task and cleanup resourcesgetTasks({})
- Get all tasksgetTask({ taskId })
- Get task details with messagesgetTaskUpdates({ taskId, lastMessageId? })
- Poll for new messagesConfigure the source repository URL in your .env
file. Each task will clone this repository into an isolated directory under REPO_INSTANCES_PATH
.
The Claude Code integration supports various options:
The application supports multiple Claude Code authentication methods:
Anthropic API (recommended):
ANTHROPIC_API_KEY=your_key_here
AWS Bedrock:
CLAUDE_CODE_USE_BEDROCK=1
# Configure AWS credentials
Google Vertex AI:
CLAUDE_CODE_USE_VERTEX=1
# Configure Google Cloud credentials
The application is configured with Astro's Node adapter for deployment to any Node.js-compatible platform:
pnpm build
node dist/server/entry.mjs
Ensure these environment variables are set in production:
ANTHROPIC_API_KEY
(or alternative auth method)SOURCE_REPO_URL
REPO_INSTANCES_PATH
(should be persistent storage)This project is part of the larger Zai repository. See the main repository for license information.
FAQs
A modern web application built with Astro that allows you to create and manage AI-powered coding tasks using Claude Code SDK. Each task automatically clones a repository instance, initializes it, and lets Claude Code implement your requirements while prov
The npm package agents-manager receives a total of 0 weekly downloads. As such, agents-manager popularity was classified as not popular.
We found that agents-manager demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.