Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

openconstruct

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openconstruct

OpenConstruct thin client - onboard agents into the SuperInstance ecosystem

latest
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

OpenConstruct TypeScript — Node.js Agent Onboarding

TypeScript client for OpenConstruct. Onboard agents into the SuperInstance ecosystem from any Node.js or edge runtime.

What This Gives You

  • 5-phase onboardingstart()declareAgent()selectModules()chooseInterface()generateConfig()
  • Full type safetyAgentIdentity, ModuleInfo, OnboardingConfig, InterfaceChoice interfaces
  • Module registry — domain-filtered catalog
  • Dual interface selection — choose one or multiple interface types with custom configs

Quick Start

import { OpenConstructClient, AgentIdentity } from 'openconstruct';

const client = new OpenConstructClient();
client.start();

const identity: AgentIdentity = {
  name: 'my-agent',
  model: 'claude-4',
  capabilities: ['code_generation', 'web_search'],
  tools: ['exec', 'read', 'write']
};
client.declareAgent(identity);

const modules = client.listModules({ domain: 'math' });
client.selectModules(['spectral-graph-core', 'plato-room']);
client.chooseInterface(['cli', 'api']);

const config = client.generateConfig();
console.log(config);

Installation

npm install openconstruct

Testing

npm test

License

MIT

Keywords

openconstruct

FAQs

Package last updated on 29 May 2026

Did you know?

Socket

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.

Install

Related posts