bigpowers 2.1.1 → 2.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [2.1.2](https://github.com/danielvm-git/bigpowers/compare/v2.1.1...v2.1.2) (2026-06-12)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **dashboard:** support alternative epic id and title keys in yaml parser ([d911e8f](https://github.com/danielvm-git/bigpowers/commit/d911e8f61c608a96d8d3d42cb4a4d19cff71ee3d))
7
+
1
8
  ## [2.1.1](https://github.com/danielvm-git/bigpowers/compare/v2.1.0...v2.1.1) (2026-06-11)
2
9
 
3
10
 
@@ -76,8 +76,8 @@ function readEpicShards(projectRoot) {
76
76
  const content = fs.readFileSync(filePath, 'utf8');
77
77
  const data = yaml.load(content);
78
78
  epics.push({
79
- id: data.id || null,
80
- title: data.title || null,
79
+ id: data.id || data.epic || null,
80
+ title: data.title || data.name || null,
81
81
  stories: data.stories || []
82
82
  });
83
83
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bigpowers",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "61 agent skills for spec-driven, test-first software development by solo developers",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -41,7 +41,7 @@ function parseEpicsFromReleasePlan(text) {
41
41
  const blocks = text.split(/\n\s*-\s+id:\s+/).slice(1);
42
42
  for (const block of blocks) {
43
43
  const id = block.match(/^(\S+)/)?.[1];
44
- const title = block.match(/title:\s*"?([^"\n]+)"?/)?.[1];
44
+ const title = block.match(/(?:title|name):\s*"?([^"\n]+)"?/)?.[1];
45
45
  const wsjf = parseFloat(block.match(/wsjf:\s*([\d.]+)/)?.[1] || '0');
46
46
  const file = block.match(/file:\s*(\S+)/)?.[1];
47
47
  if (id) epics.push({ id, title: title || id, wsjf, file });
@@ -50,7 +50,7 @@ function parseEpicsFromReleasePlan(text) {
50
50
  }
51
51
 
52
52
  function parseSimpleEpic(text) {
53
- const title = text.match(/^title:\s*"?([^"\n]+)"?/m)?.[1];
53
+ const title = text.match(/^(?:title|name):\s*"?([^"\n]+)"?/m)?.[1];
54
54
  const stories = [];
55
55
  const storyBlocks = text.split(/\n\s*-\s+id:\s+/).slice(1);
56
56
  for (const sb of storyBlocks) {