Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>TC-ADR ManagerNew to Visual Studio Code? Get it now.
TC-ADR Manager

TC-ADR Manager

TCEXT

|
1 install
| (0) | Free
Manage Architectural Decision Records (ADRs) using MADR 4.0, with Technical Credit annotations and a TC inventory dashboard.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

TC-ADR Manager

Document architectural decisions. Keep everything clean and easy to find.

TC-ADR Manager brings MADR 4.0 Architectural Decision Records directly into VS Code, but with a twist. Every ADR can be annotated with Technical Credit (TC) metadata that captures why a decision creates lasting value, not just what was decided.

Most teams write ADRs and forget them. TC-ADR Manager makes them actionable:

  • Create and edit MADR 4.0 ADRs in a structured webview — no raw Markdown required
  • Annotate decisions with Technical Credit — record the benefit, conditions, confidence level, and observable signals that tell you whether the value is being realised
  • TC Dashboard sidebar — see all annotated decisions across your workspace at a glance, grouped by category with confidence indicators
  • Real-time linting — catch malformed ADRs as you type, including MADR 4.0 bullet-format rules for Consequences and Pros/Cons sections
  • IntelliSense snippets — insert a complete MADR 4.0 template with a single keyword

TC annotations live in the YAML frontmatter of each ADR, version-controlled alongside your code, readable without tooling, and ignorable by tools that don't understand them.

Built on the original ADR Manager by Steven Chen (University of Stuttgart), extended with MADR 4.0 and Technical Credit support as part of the Technical Credit summer school research programme in Sydney by Northeastern students(Tali, Cesca, Owen, Maddie, Sukira) there.

Index

  1. Workspace Concept
    1. Single-root Workspace
    2. Multi-root Workspace
    3. Special Case: Single-root Workspace with only Subfolders
  2. Features
    1. Commands
    2. TC Annotations
    3. TC Dashboard
    4. Menus
    5. Linting
    6. Snippets
    7. Settings
  3. Known Issues

Workspace Concept

The VS Code ADR Manager provides its features on a workspace level. To be able to use its features, the user has to open at least one folder as a root folder in the workspace of a VS Code instance.

Additionally, the user has to establish an ADR Directory, a path to a folder inside of the workspace relative to the root of the workspace, where most of the extension's features will act upon. It defaults to docs/decisions, but can be changed by the user via command or in the user/workspace settings.

Depending on the number of folders opened as root folders in the same workspace, the extension will behave differently:

Single-root Workspace

If the user has opened only one folder in the workspace as a root folder, the user will only be able to act upon that root folder with regard to the ADR Directory, e.g., only list ADRs inside of the ADR Directory in that particular folder, only add new ADRs to the ADR Directory in that particular folder etc.

Multi-root Workspace

If the user has opened multiple folders in the workspace as root folders, the extension will try to take every root folder into account when using its features, e.g., list every ADR that is inside of the ADR Directory of every root folder, having the ability to choose which ADR Directory of which root folder a new ADR will be added to etc.

Special Case: Single-root Workspace with only Subfolders

As an alternative to the Multi-root workspace, the user may also add a single root folder which only(!) contains multiple other subfolders (e.g., a folder with multiple cloned repositories in it). In this case, the extension will behave as if the user has opened every subfolder in the workspace as separate root folders.

If this behaviour is not desired, it can be disabled in the user/workspace settings.

Features

Commands

As of now, the following commands are supported by this extension:

  • Open ADR Manager: Opens a webview panel and renders the main webview of the ADR Manager. Here, the user can see all ADRs that are located in the ADR Directory/Directories, relative to each root folder in the current workspace, add a new ADR, view and edit existing ADRs using the MADR template(s) provided by the extension or delete an existing ADR (reversible).

Note: Currently, only Markdown files that meet the following criteria will be listed in this webview:

  1. Be located in the ADR Directory
  2. Follow the naming convention of MADR
    (NNNN{-,_}random{-,_}title.md, in kebab-case, snake_case or a combination of these two cases, no special characters in the name (? * : " < > / \ |) due to file name limitations, and N corresponds to a number between 0-9)

If the content of a potential ADR detected by the extension does not conform to MADR, an error message will be shown and the user won't be able to view the Markdown file using the provided MADR template(s).

  • Add New ADR: Opens a webview panel where the user can add a new ADR using the MADR template(s) provided by the extension. The user can choose between a basic template with only the required fields of an ADR and the professional template, displaying all options of MADR 4.0 along with optional Technical Credit (TC) annotation fields.
    The extension chooses the basic or the professional MADR template according to the user's preferences configured in the user/workspace settings.
    If the user is working in a multi-root workspace (or a multi-root-like workspace), the extension will ask the user in which ADR Directory of which root folder the newly created ADR should be saved to.

  • Open ADR Manager On This File: Only when a Markdown file is open: Prompts the extension to view the Markdown file using the MADR template(s) provided by the extension.
    This command is not bound to the ADR Directory, i.e., the user may execute this command on an ADR even if it's not located inside of (an) ADR Directory.
    This command only works if the content of the Markdown file conforms to MADR.

  • Change ADR Directory: Upon executing this command, the extension will ask the user to enter a new path to the ADR Directory. This path must be a path relative to the root folder(s).
    Alternatively, this can be configured in the user/workspace settings.

  • Initialize ADR Directory: Upon running this command, the extension will generate the ADR Directory specified in the settings. In addition, the files "0000-use-markdown-architectural-decision-records.md", "adr-template.md" and "README.md" are created inside the ADR Directory as boilerplate.
    If the ADR Directory already exists in the workspace folder, the extension will ask the user if he wants to generate the boilerplate files or not.
    If the user is working in a multi-root workspace (or a multi-root-like workspace), the extension will ask the user for the root folder in which the ADR Directory should be initialized.

TC Annotations

Technical Credit (TC) annotations capture the long-term architectural value a decision creates — the opposite of technical debt. They live in the YAML front-matter of an ADR, prefixed tc- to avoid collision with standard MADR fields.

The schema defines four core fields shown in both basic and professional mode, plus two extended fields shown in professional mode only:

Field Mode Description
tc-benefit Both Free text describing the long-term advantage the decision creates. Requires tc-category alongside.
tc-category Both Single tag from the TC taxonomy (e.g. abstraction, modularity, api-stability, automation, compliance-readiness, knowledge-preservation, configurability, observability, reusability).
tc-conditions Both Free text describing under what circumstances the benefit will materialise.
tc-signals Both List of observable-signal tags (e.g. interface-stability, reduced-change-scope, defect-reduction) plus an optional free-text note.
tc-confidence Both Ordinal value 1–5 (1 speculative · 2 low · 3 moderate · 4 high · 5 evidenced).
tc-status Pro only Enum updated over the ADR lifecycle: anticipated, realised, partial, not-yet-assessable, failed.
tc-related Pro only List of related ADR references, e.g. [ADR-003, ADR-011], capturing TC compounding across decisions.

When opening an ADR in the webview, TC annotation fields are surfaced alongside the standard MADR sections. The form respects the basic vs. professional mode setting — basic mode only shows the four core fields.

TC Dashboard

The extension contributes a TC Dashboard sidebar panel in the VS Code Activity Bar. The dashboard scans all ADRs in the active workspace's ADR Directory and lists their TC annotations, with confidence indicators visualising the strength of each claim.

The dashboard refreshes automatically when ADR files in the workspace change.

Menus

As of now, this extension contributes the following menus:

  • Explorer Context Menu: When right-clicking on an ADR Directory (or any directory along the way to the ADR Directory), the extension will display the option Open ADR Manager which executes the command with the same name.
    When right-clicking on a Markdown file that follows the naming convention of MADR, the extension will display the option View in ADR Manager, opening the webview to view (and edit) the ADR using the template(s) provided by the extension.

Linting

As of now, this extension provides linting for potential ADR files for the following cases:

Required-section checks (both MADR 2.x and 4.0):

  • If there is no header for the title
  • If there is no subheader for the required fields of an ADR, i.e. if there is no subheader for 'Context and Problem Statement', 'Considered Options' or 'Decision Outcome'
  • If a required section (excluding the title) is empty
  • If headings or subheadings are not written in title case
  • If the chosen option is not listed in the list of considered options

MADR 4.0 optional-section checks (warnings only when the section is present but empty):

  • If the ### Consequences section is present but contains no content
  • If the ### Confirmation section is present but contains no content
  • If the ## More Information section is present but contains no content

MADR 4.0 bullet-format checks:

  • If a bullet inside ### Consequences does not start with Good, because or Bad, because
  • If a bullet inside a Pros/Cons option subsection does not start with Good, because, Neutral, because, or Bad, because

Snippets

As of now, this extension contributes the following snippets that can be inserted using IntelliSense or when typing certain keywords in a text editor:

  • Basic ADR Template: Inserts a template with only the required fields of a MADR 4.0 ADR (keyword: basic-madr)
  • Professional ADR Template: Inserts a template with all fields of a MADR 4.0 ADR including YAML front-matter (status, date, decision-makers, consulted, informed) and the optional ### Consequences, ### Confirmation, and ## More Information sections (keyword: professional-madr)

Settings

As of now, this extension contributes the following settings:

  • adrManager.adrDirectory: Specifies the path of the directory containing the ADRs, relative to the root workspace folder(s) (default: docs/decisions)

  • adrManager.editorMode.addAdrEditorMode: Specifies the preferred editor mode when creating a new ADR using the extension's webview (default: basic)

  • adrManager.editorMode.viewAdrEditorMode: Specifies the preferred editor mode when viewing/editing an existing ADR using the extension's webview (default: sufficient; the extension will choose the template based on the content of the ADR)

  • adrManager.treatSingleRootAsMultiRoot: Specifies whether the extension should treat single-root workspaces with only subdirectories as multi-root workspaces (default: true)

  • adrManager.showDiagnostics: Specifies if the extension shows diagnostics in the text editor when working on ADR files (default: true)

Known Issues

This release is a prototype and may contain errors and bugs. Some features are not implemented yet and some implementations may be subject to change.
It is aimed at generating feedback from user evaluation with select stakeholders.

Known limitations as of this release:

  • The parser supports MADR 4.0 only. ADRs written in the legacy MADR 2.x format may parse with reduced fidelity. A back-compatibility decision is pending.
  • TC annotation values outside the documented taxonomy (e.g. an unknown tc-category value) are passed through without rejection but may surface validation warnings.
  • The TC Dashboard currently lists annotations from ADRs in the configured ADR Directory only; ADRs elsewhere in the workspace are not included.
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft