
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
faf-scoring-kernel
Advanced tools
FAF Mk4 Scoring Kernel — WASM-compiled Rust engine for scoring .faf files and compiling .fafb binaries. The Foundry.
AI Context Format for Browsers and Edge Compute. Sub-10ms context loads globally.
npm install @faf/wasm-sdk
import { initialize, createFAF, scoreFAF } from '@faf/wasm-sdk';
await initialize();
const faf = createFAF(`
project:
name: my-project
stack: typescript
`);
console.log(faf.weighted_score); // 45.0
console.log(faf.tier); // 🟢
import init, { FAF } from '@faf/wasm-sdk';
export default {
async fetch(request) {
await init();
const faf = new FAF(yamlContent);
return Response.json({ score: faf.weighted_score });
}
};
new FAF(yamlContent) - Parse and score FAF contentname - Project namestack - Technology stackweighted_score - Weighted AI-readiness (0-100)truth_score - Unweighted average (0-100)tier - Tier emoji (🤍🔴🟡🟢🥉🥈🥇🏆)completeness - Core DNA score (40% weight)clarity - Instructions score (35% weight)structure - Context score (15% weight)metadata - Metadata score (10% weight)For maximum edge performance:
import { score_weights_fast, WEIGHTS_F32 } from '@faf/wasm-sdk';
const values = new Float32Array([80, 70, 60, 50]);
const score = score_weights_fast(WEIGHTS_F32, values);
# Install wasm-pack
cargo install wasm-pack
# Build WASM
wasm-pack build --target web --release
# Run tests
wasm-pack test --headless --chrome
npm install -g wrangler
wrangler deploy
Glass Hood - Full transparency scoring:
| Category | Weight | Description |
|---|---|---|
| Completeness | 40% | Core project DNA fields |
| Clarity | 35% | AI instructions quality |
| Structure | 15% | Context organization |
| Metadata | 10% | Versioning and tags |
| Score | Tier | Emoji |
|---|---|---|
| 0-12 | White | 🤍 |
| 13-25 | Red | 🔴 |
| 26-38 | Yellow | 🟡 |
| 39-51 | Green | 🟢 |
| 52-64 | Bronze | 🥉 |
| 65-77 | Silver | 🥈 |
| 78-90 | Gold | 🥇 |
| 91-100 | Championship | 🏆 |
MIT
FAQs
FAF Mk4 Scoring Kernel — WASM-compiled Rust engine for scoring .faf files and compiling .fafb binaries. The Foundry.
The npm package faf-scoring-kernel receives a total of 436 weekly downloads. As such, faf-scoring-kernel popularity was classified as not popular.
We found that faf-scoring-kernel demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.