devlyn-cli 1.2.0 → 1.2.1
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/bin/devlyn.js +9 -4
- package/package.json +1 -1
package/bin/devlyn.js
CHANGED
|
@@ -542,10 +542,15 @@ async function init(skipPrompts = false) {
|
|
|
542
542
|
if (!settings.permissions) settings.permissions = {};
|
|
543
543
|
if (!settings.permissions.allow) settings.permissions.allow = [];
|
|
544
544
|
const pipelinePermissions = [
|
|
545
|
-
'Write
|
|
546
|
-
'Write
|
|
547
|
-
'Edit
|
|
548
|
-
'Edit
|
|
545
|
+
'Write(.claude/done-criteria.md)',
|
|
546
|
+
'Write(.claude/EVAL-FINDINGS.md)',
|
|
547
|
+
'Edit(.claude/done-criteria.md)',
|
|
548
|
+
'Edit(.claude/EVAL-FINDINGS.md)',
|
|
549
|
+
'Bash(git add *)',
|
|
550
|
+
'Bash(git commit *)',
|
|
551
|
+
'Bash(git diff *)',
|
|
552
|
+
'Bash(git status *)',
|
|
553
|
+
'Bash(git log *)',
|
|
549
554
|
];
|
|
550
555
|
let settingsChanged = false;
|
|
551
556
|
for (const perm of pipelinePermissions) {
|