
Security News
Feross on the 10 Minutes or Less Podcast: Nobody Reads the Code
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.
@agentuity/db
Advanced tools
A standalone package for the Agentuity Database service.
npm install @agentuity/db
import { DBClient } from '@agentuity/db';
const client = new DBClient();
// Query the database
const result = await client.query('SELECT * FROM users LIMIT 10');
for (const row of result.rows) {
console.log(row);
}
// Get table schemas
const tables = await client.tables();
for (const table of tables) {
console.log(`${table.name}: ${table.columns.length} columns`);
}
// View query logs
const logs = await client.logs({ limit: 100 });
for (const log of logs.logs) {
console.log(`${log.query}: ${log.duration}ms`);
}
const client = new DBClient({
apiKey: 'your-api-key',
url: 'https://api.agentuity.com',
});
| Variable | Description | Default |
|---|---|---|
AGENTUITY_SDK_KEY | API key for authentication | Required |
AGENTUITY_REGION | Region for API endpoints | usc |
AGENTUITY_DB_URL | Override DB API URL | Auto-detected |
Apache-2.0
FAQs
Unknown package
The npm package @agentuity/db receives a total of 242 weekly downloads. As such, @agentuity/db popularity was classified as not popular.
We found that @agentuity/db demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.