paleo/alignfirst/.agents/skills/top-down-typescript/SKILL.md
top-down-typescript
TypeScript and JavaScript coding style conventions, centered on top-down narrative ordering (caller first, helpers below) and functions over classes. Read before writing or reviewing TypeScript/JavaScript code, including code inside a spec or a plan.
- Source repository stars
- 85
- Declared platforms
- 0
- Static risk flags
- 0
- Last source update
- 2026-08-28
- Source checked
- 2026-08-28
Decision brief
What it does: where it fits
TypeScript and JavaScript coding style conventions, centered on top-down narrative ordering (caller first, helpers below) and functions over classes. Read before writing or reviewing TypeScript/JavaScript code, including code inside a spec or a plan.
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/paleo/alignfirst --skill ".agents/skills/top-down-typescript"Inspect the Agent Skill "top-down-typescript" from https://github.com/paleo/alignfirst/blob/52bbcdf80917bfd93ddf9f906e61096865f71a24/.agents/skills/top-down-typescript/SKILL.md at commit 52bbcdf80917bfd93ddf9f906e61096865f71a24. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
General Rules
Dead (unused) code SHOULD NOT be kept (YAGNI principle).
Dead (unused) code SHOULD NOT be kept (YAGNI principle).Do not write multiple consecutive blank lines.Changes to linter rules MUST be discussed before being implemented. - 02
Code Organization
Usage comes first, implementation after. Exception: with inheritance — when an interface extends another, write the parent first.
Order code top-down: each file reads as a story, from entry point to leaves. The reader meets the highest-level thing first, then drills down into its dependencies:Module-level constants and variables (const, let, var value declarations at the top of the file — both exported and internal) MUST be placed immediately after imports, before any type definitions, functions, or classes.…Functions: write the caller first, then the functions it calls, recursively. A helper appears just below its caller, not grouped at the bottom of the file. If a helper is called by several siblings, place it after its f… - 03
Code Quality Standards
Strive for elegant solutions from the first implementation
Strive for elegant solutions from the first implementationAvoid redundant operations, especially expensive ones like image conversionAvoid duplicated code and logic - 04
Imports
Always use ESM import syntax (e.g., import { X } from "y.js" instead of require).
Always use ESM import syntax (e.g., import { X } from "y.js" instead of require).Avoid circular imports between modules.- Always use ESM import syntax (e.g., import { X } from "y.js" instead of require). - Avoid circular imports between modules. - 05
TypeScript, JavaScript
Never use enum and namespace.
Never use enum and namespace.Prefer const over let.Prefer undefined over null.
Permission review
Static risk signals and limitations
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 91/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 85 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- paleo/alignfirst
- Skill path
- .agents/skills/top-down-typescript/SKILL.md
- Commit
- 52bbcdf80917bfd93ddf9f906e61096865f71a24
- License
- CC0-1.0
- Collected
- 2026-08-28
- Default branch
- main
View the original SKILL.md
Top-Down TypeScript Coding Style
General Rules
- Dead (unused) code SHOULD NOT be kept (YAGNI principle).
- Do not write multiple consecutive blank lines.
- Changes to linter rules MUST be discussed before being implemented.
- Code SHOULD NOT contain commented-out code, unless a comment explains why.
Code Organization
Usage comes first, implementation after. Exception: with inheritance — when an interface extends another, write the parent first.
-
Order code top-down: each file reads as a story, from entry point to leaves. The reader meets the highest-level thing first, then drills down into its dependencies:
// 1. Imports import { ... } from "..."; // 2. Module-level constants and variables (exported first, then internal) export const PUBLIC_CONST = ...; const INTERNAL_CONST = ...; // 3. Shared types — main type first, then types it references export interface MainType { detail: DetailType; } export interface DetailType { ... } // 4. Entry-point (exported) function export function doThing() { stepOne(); stepTwo(); } // 5. Internal functions called by the entry point, in call order function stepOne() { stepOneHelper(); } function stepOneHelper() { ... } function stepTwo() { ... } -
Module-level constants and variables (
const,let,varvalue declarations at the top of the file — both exported and internal) MUST be placed immediately after imports, before any type definitions, functions, or classes. The reader sees them first and treats them as the file's configuration surface. -
Functions: write the caller first, then the functions it calls, recursively. A helper appears just below its caller, not grouped at the bottom of the file. If a helper is called by several siblings, place it after its first caller.
-
Types: write the main (top-level) type first, then the types it references, recursively. Same top-down rule as functions.
-
Types attached to a single function (or class, or other declaration) — i.e. used only in that one signature, like a
MyComponentPropsinterface used only byMyComponent— must be placed immediately before that declaration, not in the top type block. -
Exports are not a sorting criterion on their own: a
functionbeingexported does not pull it to the top — its position is determined by who calls it. The entry points of a file are usually exported, which is why they tend to appear first, but that is a consequence of the top-down rule, not the rule itself.
Code Quality Standards
- Strive for elegant solutions from the first implementation
- Avoid redundant operations, especially expensive ones like image conversion
- Avoid duplicated code and logic
- Pass previously calculated values between functions instead of recalculating
- Use early returns to simplify code flow when possible
- For code that leaves the current flow (
throw,return,continue,break), when it fits on one line, write it on one line (e.g.,if (!condition) return false;instead of multi-line format) - Use function and variable names that clearly convey intent, reducing the need for comments
- Keep functions small with a single responsibility
- Avoid
any; take the time to find the proper type. If you fail to find one, always insert a/* FIXME */after theany. For example:let myVariable: any /* FIXME */;. - Export only functions (or variables, classes) that are imported from elsewhere. By default, do not export.
- When an interface is used in the signature of an exported function or component, that interface must also be exported.
Imports
- Always use ESM import syntax (e.g.,
import { X } from "y.js"instead ofrequire). - Avoid circular imports between modules.
TypeScript, JavaScript
- Never use
enumandnamespace. - Prefer
constoverlet. - Prefer
undefinedovernull. - Prefer
??over||. - Prefer
++iand--ioveri++andi--. - Prefer
new Error()overError(). - At the top level, prefer the
functionandclassdeclarative syntax over creating them as constants. - Keep an empty line between top-level functions, classes, interfaces.
- Implementation of a getter or setter (EcmaScript 5 syntax) must never throw exceptions.
- Prefer
interfacedeclarations overtypealiases. - Prefer a single capital letter for generics parameters, such as
T,K, etc. - Do not differentiate between an absent property and a property with an
undefinedvalue. - Use camelCase for string literal values in TypeScript union types (e.g.,
"normal" | "gracefulShutdown" | "backupMode"instead of"normal" | "graceful-shutdown" | "backup-mode"). - Never use an empty string as a default value unless you really mean an empty string. If a variable might not have a value, use
undefinedor throw an error if the absence of value indicates a problem. - The existence of string, number, boolean values (and identifiers when they are string or number) must NEVER be tested by coercing to boolean. Use explicit comparisons with
undefinedornull. - Existence checks for objects and arrays MAY use boolean coercion.
- Never explicitly assign or return
undefinedwhen it is the default value. Usereturn;instead ofreturn undefined;andlet myVariable;instead oflet myVariable = undefined;. Explicitly passingundefinedis fine when intentionally setting a value. - Avoid
as anyor any kind of type assertion. Always make the effort to find the proper type. Exception: when the type is incorrect or truly unknown — justify with an inline comment. - Never re-export, except from the package's index file.
- Avoid inline
import("some-package-or-module").SomeType; prefer direct imports at the top of the file. - Avoid inline
await import("some-package-or-module"); prefer static imports at the top of the file. Exception: when there is a valid reason — justify with an inline comment.
OOP
- Prefer factory functions over classes.
- Prefer writing functions with a context object instead of a class.
- Avoid class inheritance, except in the context of a framework that requires it.
Adding a package dependency
Before adding a dependency or dev-dependency, search the codebase first and reuse the version already in use. If not found, install the latest version using the default install command.
Commit, PR/MR, and changeset messages
Never add AI attribution — Co-Authored-By: …, "Generated with …", or similar — to a commit, PR, MR, or changeset message.
Changeset messages
Write for someone already using the project who wants to know what changed, in a few words. Mention only what is actionable for them; skip the why and the internal details. Always a single short paragraph.
- New feature: name it in a few words.
- Extends a feature: title it if obvious, otherwise "Improved the {X} feature."
- Nothing actionable (for example documentation or refactoring): stay succinct, like "Improved documentation about {topic}."
When a version mixes actionable and non-actionable changes (for example a big refactoring plus a small feature), mention only the actionable one. Mention non-actionable changes only when there is nothing else for the user.
Version bumps
Never bump a package from 0.x.x to 1.0.0 unless explicitly instructed. Breaking changes are accepted while the major version is 0.
Improving code quality
SRP - Single Responsibility Principle
Think of it as narrative decomposition: the caller reads like a paragraph that names what happens; each helper expands one sentence of that paragraph.
For example, this code:
export function myFunction() {
// Check something
// ... 20 lines ...
// Do something
// ... 20 lines ...
}
… should be refactored in:
export function myFunction() {
checkSomething();
doSomething();
}
function checkSomething() {
// ... 20 lines ...
}
function doSomething() {
// ... 20 lines ...
}
Guidelines:
- Always write the sub-function after the caller function.
- Do not export a function unless it is imported from outside the source file.
- Apply the Single Responsibility Principle when dividing code: one function for one concern.
- Avoid exceeding the height of one screen (~50 lines) for function implementations.
- Keep code clean and self-explanatory rather than adding explanatory comments.
DRY - Don't Repeat Yourself
Each time you see duplicated logic, take the time to refactor it into a reusable function.
YAGNI - You Aren't Gonna Need It
Do not keep unused code such as variables, functions, implementations, etc.
Warning signs
- Fallbacks to empty string or zero rarely have a good reason: review every
?? ""and?? 0and confirm it is intentional. Otherwise, understand the typing and find an elegant fix.- Note: a valid use case for
?? ""is when the UI requires an empty string.
- Note: a valid use case for
- Type assertions (
as SomeType) are often a sign of misunderstood typing. - Avoid
anyand find the proper type. Whenanyis truly needed, add a comment explaining why. - Do not use
ReturnType<T>orParameters<T>if you can import the actual type. - Do not use
SomeType["someMemberName"]if you can import the actual type.
Remove Unnecessary Comments
- About comments: the fewer the better. Comments are read by skilled developers. Each comment must be sharp, concise, straight to the point. Each word must be carefully weighted and chosen.
- Remove comments that are redundant with the code itself.
- Only keep inline comments that document hacks, TODOs, or exceptional situations, or when the code's purpose isn't obvious from its structure.
- Do not use comments as annotations for justifying the task you are currently working on.
The following comment must be removed:
// Create a new task
createANewTask();
Other examples of inline comments that are obvious and must be removed:
// Validate that there is a file
if (!file) throw new ApiError(400);
// Validate and parse the request body according to the expected schema
const validated = UploadBodyAT.assert(body);
JSDoc comments should only be used when they add meaningful information. Example of a comment that must be entirely removed because everything is obvious:
/**
* This function adds two numbers
* @param a - The first number
* @param b - The second number
* @returns The sum of the two numbers
*/
function addTwoNumbers(a: number, b: number) {
return a + b;
}
Frequently asked questions
What to verify before installation and use
What does the top-down-typescript source document cover?
TypeScript and JavaScript coding style conventions, centered on top-down narrative ordering (caller first, helpers below) and functions over classes. Read before writing or reviewing TypeScript/JavaScript code, including code inside a spec or a plan.
How do I install top-down-typescript?
The source record exposes this install command: npx skills add https://github.com/paleo/alignfirst --skill ".agents/skills/top-down-typescript". Inspect the command and pinned source before running it.
Alternatives
Compare before choosing
coreyhaines31/marketingskills
ab-testing
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
garrytan/gbrain
bulk-ingestion
End-to-end discipline for turning any large data source (audio libraries, email takeouts, document corpora, chat exports, API dumps) into brain pages at scale. The lifecycle spine: SCHEMA → ACCESS → TRIAL → EVALUATE → IMPROVE → CODIFY → TEST → SKILLIFY → BULK → MONITOR. State is tracked in a durable JSON manifest (see MANIFEST-PATTERN.md) so any crash, session boundary, or subagent fan-out resumes from ground truth instead of memory.
alirezarezvani/claude-skills
app-store-optimization
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
dotnet/skills
migrate-vstest-to-mtp
Migrates .NET test projects from VSTest to Microsoft.Testing.Platform (MTP). Use when user asks to "migrate to MTP", "switch from VSTest", "enable Microsoft.Testing.Platform", "use MTP runner", set OutputType=Exe only for test projects in Directory.Build.props, or mentions EnableMSTestRunner, EnableNUnitRunner, or UseMicrosoftTestingPlatformRunner. USE FOR: MTP behavioral differences vs VSTest (exit code 8, zero tests discovered, --ignore-exit-code, TESTINGPLATFORM_EXITCODE_IGNORE); centralizing