
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
Praetor-native image-to-3D + text-to-3D runtime. Default backend is Microsoft TRELLIS (MIT, image -> GLB mesh + PBR textures) via Replicate's hosted endpoint. Mock + future self-hosted Diffusers + Hugging Face Inference adapters available.
Image-to-3D and text-to-3D for Praetor charters. Generate GLB meshes with PBR textures from a single photo (or a text prompt) without leaving the runtime.
Default backend is Microsoft TRELLIS (MIT license, image → GLB + PBR
materials) hosted on Replicate (firtoz/trellis, ~$0.035/run, ~25s on A100).
A HuggingFaceTrellisAdapter covers self-deployed Inference Endpoints for
sovereign mode, and a MockThreeDAdapter ships for tests.
npm install @kpanks/3d
import { Praetor3D, ReplicateTrellisAdapter } from "@kpanks/3d";
const studio = new Praetor3D({
adapter: new ReplicateTrellisAdapter({ token: process.env.REPLICATE_API_TOKEN! }),
allowedLicenseFamilies: ["apache_or_mit"], // refuse proprietary backends
});
const result = await studio.imageTo3D({
imageUrl: "https://example.com/photo.png",
simplify: 0.95,
textureSize: 1024,
});
console.log(result.glbUrl); // signed Replicate delivery URL
console.log(result.previewUrls); // 360° preview render(s)
console.log(result.costUsd); // 0.035 (FiscalGate sees this)
| Adapter | License family | Notes |
|---|---|---|
ReplicateTrellisAdapter | apache_or_mit | Default. Polls Replicate's REST API. ~$0.035/run. |
HuggingFaceTrellisAdapter | apache_or_mit | For self-deployed HF Inference Endpoints. Sovereign-mode safe. |
MockThreeDAdapter | apache_or_mit | Returns canned URLs. Tests + zero-budget fallback. |
When attached to a charter's ActivityBus + missionId, every call emits
tool.start / tool.end events with a stable eventId. The runtime's audit
sink also records 3d.image_to_3d / 3d.text_to_3d records with
non-PII fields (imageUrl, simplify, textureSize).
Apache 2.0. The TRELLIS model itself is MIT-licensed by Microsoft.
FAQs
Praetor-native image-to-3D + text-to-3D runtime. Default backend is Microsoft TRELLIS (MIT, image -> GLB mesh + PBR textures) via Replicate's hosted endpoint. Mock + future self-hosted Diffusers + Hugging Face Inference adapters available.
We found that @kpanks/3d 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.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.