
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.

For use in threejs scenes built using angular-three. Uses ng3-flat-ui controls and theme.
Interface matches lil-gui, so easy drop-in replacement for use within a three scene. Supports onChange event.
Updated to support multi-line text input.
import { Ng3GUI } from 'ng3-gui';
selectable = new InteractiveObjects();
basic!: Ng3GUI;
ngOnInit(): void {
const gui = new Ng3GUI();
const myObject = {
myBoolean: true,
myFunction: function() { ... },
myString: 'lil-gui',
myNumber: 1
};
gui.add( myObject, 'myBoolean' ); // Checkbox
gui.add( myObject, 'myFunction' ); // Button
gui.add( myObject, 'myString' ); // Text Field
gui.add( myObject, 'myNumber' ); // Number Field
this.basic = gui;
}
<ng3-gui [position]="[1.7, 1, -2]" [gui]="basic" [selectable]="selectable"></ng3-gui>
Component works in browser window using touch or mouse. GUI windows can be moved along x-y plane.
Component also work in VR using ray caster to provide an in-scene user interface. Windows can be dragged around scene.
In no particular order, add support for
FAQs

The npm package ng3-gui receives a total of 0 weekly downloads. As such, ng3-gui popularity was classified as not popular.
We found that ng3-gui 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.