Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>MADE - LedsNew to Visual Studio Code? Get it now.
MADE - Leds

MADE - Leds

LEDS IFES

|
40 installs
| (0) | Free
It allows you to create tasks in your project manager (e.g., Jira) automatically based on predefined processes. Additionally, it generates documentation based on the project.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

logo

MADE

It is a plugin that empowers the Scrum Master and the development team to create the backlog and sprints based on processes that can be reused and standardized throughout the project and/or across different projects.

Install

To install the plugin, there are two methods. For the first method, follow these steps:

  1. Download the plugin,
  2. Open Visual Studio Code
  3. Right-click and then select "Install Extension VSIX" to initiate the installation.

The second method follow these steps:

  1. Open the VSCode
  2. Click in Extensions
  3. Search : MADE-Leds
  4. Click in Install

Usage

Right-click on your .made file and select "Synchronize With Project Management"
image with the right-click menu

Components

Project:

Define the project configuration and the token for creating the project in your project manager.

project "project-name"{
  id: projectid
  description: "project description"
  email: "email of the project editor"
  host: "host.project.net"
  token: "the api token"
}

Team:

Define a team and inside of it define the members of the team

team TeamID {
    name: "team name"
    description: "team description"
    
    teammember memberid {
      name: "member name" 
      email:"member@email.com"
      }
}

Timebox:

Define the timebox its responsibles, planning and performed

timebox timeboxid {
    name: "timebox name"
    description: "timebox description"
    startDate: "01/01/2024"
    endDate: "12/12/2024"

    responsible: TeamID.memberid 

    planning {
        item: "planning item" assignee: "member name"
    } 

    performed{
        item: "performed item" status: DOING
    }
}

Process:

Define the project and its activities.

process processID {
    name: "process name"
    description: "process description"

    activity activityID{
        name: "activity name"
        description: "activity description"
    }
}

BackLog:

Define the backlog its epics and user stories.

backlog BackLogID  {
    name: "backlog name"
    description: "backlog description"
    epic EpicId {
        name: "Epic name"
        process: processID
    }
    userstory userstoryId {
        name: "User story name"
        activity: processID.activityID
    }
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft