feat(git-master): add configurable commit footer and co-author options

Add git_master config with commit_footer and include_co_authored_by flags.
Users can disable Sisyphus attribution in commits via oh-my-opencode.json.

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-01-06 16:34:29 +09:00
parent 919453ebce
commit 185c72c9e3
5 changed files with 100 additions and 2 deletions
+15 -1
View File
@@ -37,7 +37,8 @@
"type": "string",
"enum": [
"playwright",
"frontend-ui-ux"
"frontend-ui-ux",
"git-master"
]
}
},
@@ -1999,6 +2000,19 @@
"type": "boolean"
}
}
},
"git_master": {
"type": "object",
"properties": {
"commit_footer": {
"default": true,
"type": "boolean"
},
"include_co_authored_by": {
"default": true,
"type": "boolean"
}
}
}
}
}