
Product
Introducing Webhook Events for Pull Request Scans
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
@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.
Product
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
Research
The Socket Threat Research Team uncovered malicious NuGet packages typosquatting the popular Nethereum project to steal wallet keys.
Product
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.