function getStatusSection (adrDir, file) {
  let data = fs.readFileSync(path.join(adrDir, file), 'utf8')
  let res = data.match(/^## Status\s*([\w\W]*)^## Context/m)
  if (res.length === 2) {
    return res[1].trim()