
Product
Introducing Module Reachability: Focus on the Vulnerabilities That Matter
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
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)
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
A tool for analyzing Agile sprint data to make team predictions.
The npm package agilenizer receives a total of 0 weekly downloads. As such, agilenizer popularity was classified as not popular.
We found that agilenizer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Product
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
Product
Socket is introducing a new way to organize repositories and apply repository-specific security policies.
Research
Security News
Socket researchers uncovered malicious npm and PyPI packages that steal crypto wallet credentials using Google Analytics and Telegram for exfiltration.