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

@copass/core

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@copass/core

Core client SDK for the Copass platform

Source
npmnpm
Version
0.6.0
Version published
Weekly downloads
125
-17.76%
Maintainers
1
Weekly downloads
 
Created
Source

@copass/harness

TypeScript client SDK for the Copass knowledge graph platform.

Installation

npm install @copass/harness

Requires Node.js >= 18.0.0.

Usage

import { CopassClient } from '@copass/harness';

const client = new CopassClient({
  auth: { type: 'api-key', key: 'olk_your_api_key' },
});

// Natural language search
const result = await client.matrix.query({
  query: 'How does authentication work?',
});

// Ingestion (auto-resolves caller's primary sandbox + default project)
const job = await client.ingest.text({
  text: 'const x = 1;',
  source_type: 'code',
});
const status = await client.ingest.getJob(job.job_id);

Documentation

See the main documentation for architecture, API reference, and guides.

License

MIT

Keywords

copass

FAQs

Package last updated on 08 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