🚀 Socket Launch Week 🚀 Day 2: Introducing Repository Labels and Security Policies.Learn More
Socket
Sign inDemoInstall
Socket

agilenizer

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agilenizer

A tool for analyzing Agile sprint data to make team predictions.

1.1.0
latest
Source
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Agilenizer Build Status

A module for measuring skills

NPM js-standard-style

power bar graph

Don't let the Agile methodology reduce your team to coarse and uninteresting indididual comparisons!

Rather than measuring how many "points" a person completes, or how much faster they tend to complete tasks, Agilenizer provides a statistical, skill-domain-driven analysis.

By defining dimensions to track, Agilenizer can match for those in your task title strings, allowing easy data digestion.

  var agilenizer = require('agilenizer')

  var person = agilenizer.newIdentity({
    name: 'Dan', // Optional
    dimensions: ['Node', 'iOS', 'Android', 'UI', 'API'],
    caseInsensitive: false, // For matching dimensions
  })

  // Train agilenizer with past experience:
  person.completed(['Node', 'UI'], {
    taken: 3,
    expected: 2
  })

  // Internally, taken/expected becomes ratio:
  person.completed(['Node', 'API'], {ratio: 1.8})

  // Can also provide a string instead of array:
  person.completed('iOS UI-Whatever works!', {ratio: 0.25})
  person.completed('iOS API thingie!', {ratio: 0.5})
  person.completed('iOS UI: Special mission', {ratio: 0.5})
  person.completed(['iOS', 'API'], {ratio: 0.75})

  // At any point, the identity can generate projections:
  // The projection is a ratio, representing
  // what multiple of the time estimate this person
  // is likely to take.  Multiply it by the task estimate.
  var projection = person.guessFor('iOS UI Task')
  test.equals(projection, 0.375)

  // Since we set caseInsensitive, this also works:
  projection = person.guessFor('ios ui task')
  test.equals(projection, 0.375)

  // Persisting your trained identity is easy
  // AND memory efficient!
  var json = person.serialize()
  test.equals(typeof json, 'string')

  // Later on:
  var newPerson = agilenizer.newIdentity()
  newPerson.load(json)

Velocity Tracking

To help encourage growth in various skill areas, tracking improvement over time is supported. Right now you can check the user's growth rate per task completed for a given query at any time like this:

  var velocity = person.velocityFor('Android UI')
  console.log("An average growth rate of " + velocity.avg)
  console.log("Most recently, had an improvement of " + velocity.last)

FAQs

Package last updated on 05 Jul 2015

Did you know?

Socket

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.

Install

Related posts