
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
A collection of tools for specifying network protocols in heldb.
const HelStruct = require('helschema/struct');
const HelString = require('helschema/string');
const HelFloat = require('helschema/float64');
const HelInt = require('helschema/int32');
const HelDictionary = require('helschema/dictionary');
const Entity = HelStruct({
x: HelFloat(),
y: HelFloat(),
dx: HelFloat(),
dy: HelFloat(),
hp: HelInt(10),
name: HelString('entity')
})
const EntitySet = HelDictionary(Entity)
const entities = EntitySet.alloc()
const player = Entity.create()
player.x = 10
player.y = 10
player.dx = -10
player.dy = -20
player.name = 'player'
entities['foo'] = player
require('helschema/int8')([identity])8-bit signed integer
require('helschema/int16')([identity])16-bit signed integer
require('helschema/int32')([identity])32-bit signed integer
require('helschema/uint8')([identity])8-bit unsigned integer
require('helschema/uint16')([identity])16-bit unsigned integer
require('helschema/uint32')([identity])32-bit unsigned integer
require('helschema/float32')([identity])32-bit ieee754 float
require('helschema/float64')([identity])64-bit ieee754 float
require('helschema/string')([identity])JS string data type
require('helschema/boolean')([identity])require('helschema/struct')(schema[,identity])require('helschema/union')(subtypes[,identity])require('helschema/dictionary')([identity])FAQs
Schema definition utilities for heldb
We found that helschema 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.
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
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.