Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@forwardimpact/libcoaligned

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@forwardimpact/libcoaligned - npm Package Compare versions

Comparing version
0.1.1
to
0.1.2
+1
-1
package.json
{
"name": "@forwardimpact/libcoaligned",
"version": "0.1.1",
"version": "0.1.2",
"description": "Co-Aligned architecture checks — enforce instruction-layer length caps and JTBD invariants across the repo.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -105,2 +105,5 @@ import { readFile, readdir } from "node:fs/promises";

const skillDirs = await findSkillDirs(root, claudeDirs);
const allClaude = await findByName(root, "CLAUDE.md", "file");
const rootClaude = allClaude.filter((p) => p === "CLAUDE.md");
const subdirClaude = allClaude.filter((p) => p !== "CLAUDE.md");
return {

@@ -111,8 +114,15 @@ skillDirs,

id: "L1",
name: "CLAUDE.md",
name: "root CLAUDE.md",
maxLines: 192,
maxWords: 896,
files: await findByName(root, "CLAUDE.md", "file"),
files: rootClaude,
},
{
id: "L1",
name: "subdir CLAUDE.md",
maxLines: 128,
maxWords: 768,
files: subdirClaude,
},
{
id: "L2",

@@ -119,0 +129,0 @@ name: "CONTRIBUTING.md",