
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@mondaydotcomorg/ai-internal-tools
Advanced tools
This is a test repository for the Aider AI coding assistant.
The exploration phase has been refactored to work independently of the main file editing flow. You can now use exploration functionality standalone:
import {
runStandaloneExploration,
createEmptyExplorationState,
} from "./src/scripts/utils/file-editing-v2/phases/explorer";
import { Projects } from "./src/scripts/utils/file-editing-v2/types";
// Define your projects
const projects: Projects = {
myProject: {
projectKey: "myProject",
name: "My Project",
path: "/path/to/project",
context: "A TypeScript project",
},
};
// Run standalone exploration
const { explorationState, result } = await runStandaloneExploration(
{
llmProvider: myLLMProvider,
userRequestPrompt: "Find all React components in the project",
projects: projects,
maxExplorationCycles: 3,
},
createEmptyExplorationState(), // or provide partial initial state
[], // initial exploration requests
console.log // log callback
);
// Access exploration results
console.log("Main files found:", explorationState.mainFiles);
console.log("Context files:", explorationState.contextFiles);
console.log("Quote references:", explorationState.quoteReferences);
ExplorationState
: Contains all exploration data (mainFiles, contextFiles, etc.)runStandaloneExploration()
: Runs exploration independentlyrunExplorationPhase()
: Core exploration function (now takes ExplorationState)createEmptyExplorationState()
: Helper to create initial stateThe main MainFlowState
still contains both the new explorationState
field and legacy fields for backward compatibility. All existing code continues to work unchanged.
FAQs
AI Internal Tools for Monday.com
We found that @mondaydotcomorg/ai-internal-tools demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 73 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.