
Product
Introducing Socket Firewall Enterprise: Flexible, Configurable Protection for Modern Package Ecosystems
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.
@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
The npm package @mondaydotcomorg/ai-internal-tools receives a total of 439 weekly downloads. As such, @mondaydotcomorg/ai-internal-tools popularity was classified as not popular.
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
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.

Product
Detect malware, unsafe data flows, and license issues in GitHub Actions with Socket’s new workflow scanning support.