
Security News
/Research
Fake Corepack Site Distributes Infostealer and Proxyware to Developers
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.
@isl-lang/isl-discovery
Advanced tools
ISL Discovery Engine - Automatic implementation discovery and binding generation
Automatic implementation discovery and binding generation for ISL (Intent Specification Language).
The ISL Discovery Engine automatically maps ISL specifications (behaviors, entities, types) to implementation code (functions, routes, classes) using multiple discovery strategies:
Login → POST /api/login).shipgate.bindings.json)# Basic usage
isl bind specs/auth.isl
# With options
isl bind specs/auth.isl --impl ./src --min-confidence 0.5
# Multiple spec files
isl bind specs/auth.isl specs/users.isl
# Custom output location
isl bind specs/auth.isl --output .bindings.json
import { discover, writeBindingsFile } from '@isl-lang/isl-discovery';
const result = await discover({
rootDir: './src',
specFiles: ['specs/auth.isl'],
minConfidence: 0.3,
verbose: true,
});
await writeBindingsFile('.shipgate.bindings.json', result, ['specs/auth.isl']);
The discovery engine generates .shipgate.bindings.json files with the following structure:
{
"version": "1.0.0",
"timestamp": "2026-02-09T12:00:00.000Z",
"specs": ["specs/auth.isl"],
"bindings": [
{
"isl": {
"type": "behavior",
"name": "Login",
"domain": "UserAuthentication",
"specFile": "specs/auth.isl",
"location": {
"start": { "line": 30, "column": 1 },
"end": { "line": 74, "column": 1 }
}
},
"code": {
"type": "route",
"name": "POST /api/login",
"file": "src/routes/auth.ts",
"location": {
"start": { "line": 45, "column": 1 },
"end": { "line": 45, "column": 1 }
},
"metadata": {
"method": "POST",
"path": "/api/login"
}
},
"confidence": 0.85,
"evidence": [
{
"type": "route_matching",
"description": "Route path contains behavior name: POST /api/login",
"confidence": 0.80
}
],
"strategy": "route_matching"
}
]
}
Matches symbols based on file paths:
Login behavior → routes/login.ts or handlers/login.tsUser entity → models/user.ts or entities/user.tsConfidence: 0.60-0.75
Analyzes code structure to find:
app.get(), app.post(), etc.)export function, export const)export class)Confidence: 0.70-0.85
Matches using naming variations:
CreateUser → createUser, create_user, CreateUserConfidence: 0.65-0.85
Maps behaviors to HTTP routes:
CreateUser → POST /api/usersGetUser → GET /api/users/:idDeleteUser → DELETE /api/users/:idConfidence: 0.80-0.85
Confidence scores range from 0.0 to 1.0:
rootDir - Root directory to search (default: current directory)specFiles - ISL spec file(s) to bindcodeDirs - Code directories to search (default: all)includePatterns - File patterns to include (default: **/*.ts, **/*.js)excludePatterns - File patterns to exclude (default: **/node_modules/**, **/dist/**)minConfidence - Minimum confidence threshold (default: 0.3)enableAST - Enable AST scanning (default: true)enableFilesystem - Enable filesystem heuristics (default: true)enableNaming - Enable naming convention matching (default: true)verbose - Verbose output (default: false)# Discover bindings for auth domain
isl bind specs/auth.isl --impl ./src --code-dirs src/routes,src/handlers
# Output:
# ✓ Bindings generated successfully
# Output: .shipgate.bindings.json
#
# Statistics:
# ISL symbols: 4
# Code symbols: 12
# Bindings: 4
# Coverage: 100.0%
# Average confidence: 82.5%
isl bind specs/auth.isl specs/users.isl specs/payments.isl
The bindings file can be used by:
FAQs
ISL Discovery Engine - Automatic implementation discovery and binding generation
We found that @isl-lang/isl-discovery demonstrated a healthy version release cadence and project activity because the last version was released less than 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
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.

Security News
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.