
Product
PHP and Composer Support Is Now in Beta
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.
TypeScript implementation of the Agents.json specification with core functionality and integrations.
npm install @wildcard/agents-json
import { execute, Bundle, Flow, AuthConfig, AuthType } from '@wildcard/agents-json';
// Define your bundle
const bundle: Bundle = {
id: 'example-bundle',
name: 'Example Bundle',
flows: [
{
id: 'example-flow',
actions: [
{
id: 'action1',
sourceId: 'twitter',
operationId: 'postTweet',
},
],
},
],
};
// Define your authentication
const auth: AuthConfig = {
type: AuthType.OAUTH2,
client_id: 'your-client-id',
client_secret: 'your-client-secret',
access_token: 'your-access-token',
};
// Execute the flow
const result = await execute(
bundle,
bundle.flows[0],
auth,
{ text: 'Hello, World!' },
{}
);
import { RestApiHandler } from '@wildcard/agents-json';
const api = new RestApiHandler({
baseURL: 'https://api.example.com',
});
api.setAuth({
type: AuthType.BEARER,
token: 'your-token',
});
const response = await api.get('/endpoint', { param: 'value' });
# Install dependencies
npm install
# Build the package
npm run build
# Run tests
npm test
# Run type checking
npm run typecheck
# Run linting
npm run lint
# Format code
npm run format
FAQs
Agents.json TypeScript Implementation with Core and Integrations
The npm package agentsjson receives a total of 3 weekly downloads. As such, agentsjson popularity was classified as not popular.
We found that agentsjson demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.

Product
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.

Research
/Security News
Three compromised Rust crates pulled in a malicious dependency that downloaded and executed cross-platform malware during Cargo builds.