aistupidlevel-com
v0.1.0
Published
AI Stupid Level metadata and integration helper package for AI Stupid Level benchmark workflows for https://aistupidlevel.com.
Maintainers
Readme
aistupidlevel-com
aistupidlevel-com is a lightweight Node.js metadata and integration helper package for aistupidlevel.com.
The package gives automation scripts, content tooling, and future SDK code a stable package name for AI Stupid Level. It exposes the canonical website URL, documentation URL, source repository, local repository path, MDX content path, and Next.js app path used by the project.
Website focus
AI Stupid Level focuses on AI model drift benchmarking, reliability reports, and comparative model evaluation workflows. This package does not try to wrap a private production API yet; it publishes a clear, installable metadata layer that can later grow into a fuller SDK or workflow client.
Installation
npm install aistupidlevel-comQuick start
const { getSiteInfo, metadata } = require('aistupidlevel-com');
console.log(metadata.homepage);
console.log(getSiteInfo());Metadata API
Use the package when a script needs to know where the site lives, where content is stored, or which repository backs the package.
const site = getSiteInfo();
console.log(site.name);
console.log(site.homepage);
console.log(site.contentPath);
console.log(site.appPath);Returned metadata includes:
- Site name: AI Stupid Level
- Homepage: https://aistupidlevel.com
- Documentation: https://aistupidlevel.com/docs
- Package name: aistupidlevel-com
- Source repository: https://github.com/youram470-art/aistupidlevel-com-npm
- Local repository: /Users/mac/Documents/code/aistupidlevel
- Content path: content
- Next.js app path: src/app
Common use cases
- reference the AI Stupid Level benchmark site from scripts.
- attach benchmark-site metadata to generated reports.
- prepare a small base package for future model-drift API helpers.
- Share a stable public package page that points back to https://aistupidlevel.com.
Automation example
This package is useful in release scripts, SEO tooling, blog generators, indexing jobs, and content maintenance utilities. A script can import the package, derive the content directory, and consistently point generated output back to the public website.
Links
- Website: https://aistupidlevel.com
- Documentation: https://aistupidlevel.com/docs
- Source: https://github.com/youram470-art/aistupidlevel-com-npm
- Issues: https://github.com/youram470-art/aistupidlevel-com-npm/issues
License
MIT
