You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@ahmadubaidillah/core

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@ahmadubaidillah/core

The scaffolding engine and RTK-AI efficiency layer for DevForge.

latest
Source
npmnpm
Version
1.1.12
Version published
Maintainers
1
Created
Source

@ahmadubaidillah/core ⚙️

The core engine and shared utilities for the DevForge ecosystem. This package contains the scaffolding logic, plugin installer, and the RTK-AI efficiency layer.

🚀 Features

  • Scaffolding Engine: Programmatic API to generate projects from templates.
  • Plugin Installer: Modular injection system for Hono, Drizzle, and more.
  • RTK-Filter: Intelligence layer to compress code context for AI agents.
  • Token Tracker: Metrics and analytics for LLM cost savings.
  • Doctor: Architectural health checks and validation patterns.

🛠 Usage

This package is intended for internal use by @ahmadubaidillah/cli or for developers building custom wrappers around the DevForge engine.

Programmatic Scaffolding

import { scaffold } from "@ahmadubaidillah/core";

await scaffold({
  projectName: "my-app",
  templateName: "saas",
  targetDir: "./my-app",
  plugins: ["auth", "stripe"],
  withAgents: true,
  agentKey: "YOUR_KEY",
});

Context Filtering

import { RTKFilter, FilterLevel, Language } from "@ahmadubaidillah/core";

const compressed = RTKFilter.filter(
  rawCode,
  Language.TypeScript,
  FilterLevel.Aggressive,
);

🏗 Architecture

The core is divided into several key modules:

  • engine/: Handles template loading, variable interpolation, and file composition.
  • utils/: Includes the TokenTracker, RTKFilter, and MigrationResolver.
  • plugins/: Logic for modular feature injection.
  • ui/: Shared branding and design tokens for DevForge-generated apps.

🤝 Contributing

When modifying the core:

  • Ensure all logic is language-agnostic where possible.
  • Follow Separation of Concerns (keep engine logic out of utils).
  • Use Zod for all boundary validations.

The engine behind professional-grade agentic applications.

FAQs

Package last updated on 06 Mar 2026

Did you know?

Socket

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.

Install

Related posts