
Product
Introducing Repository Access Permissions and Custom Roles
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.
@archships/dim-plugin-devtools
Advanced tools
Official supported devtools inspector plugin for dim-agent-sdk.
session.getPlugin('devtools')getInspectorUrl() and opens it in the default browser by default<hostDataDir>/devtools/<instanceId>/events.jsonl<hostDataDir>/provider-http/*.jsonl by requestIdhostDataDir stays stablegetInspectorUrl(): lazily starts the local HTTP server, opens the inspector in the system default browser by default, and returns the inspector URLcreateDevtoolsPlugin({ autoOpenBrowser: false }) when the host only wants the URL without opening a browser windowimport { FileStateStore, createAgent, createModel } from '@archships/dim-agent-sdk'
import { createDevtoolsPlugin } from '@archships/dim-plugin-devtools'
const agent = createAgent({
model: createModel(adapter),
cwd: process.cwd(),
hostDataDir: '.dim/host-data',
stateStore: new FileStateStore({
directory: '.dim/snapshots',
}),
plugins: [createDevtoolsPlugin()],
})
const session = await agent.createSession()
const devtools = session.getPlugin('devtools')
const inspectorUrl = await devtools?.getInspectorUrl()
console.log(inspectorUrl)
hostDataDir is required; the plugin throws during setup if the host does not provide itrequestIdhttp_request entries are parsed into a readable request line plus per-field header/body views, so the Requests tab shows exactly what the transport sentinspect service and optional plugin inspector exports<hostDataDir>/provider-http; override it with createDevtoolsPlugin({ providerHttpDir })createDevtoolsPlugin({ autoOpenBrowser: false })instanceId is derived from cwd or hostDataDir, so restarting the same host process can replay the same journal directoryFAQs
Official devtools inspector plugin for dim-agent-sdk.
The npm package @archships/dim-plugin-devtools receives a total of 6 weekly downloads. As such, @archships/dim-plugin-devtools popularity was classified as not popular.
We found that @archships/dim-plugin-devtools demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.