* Add live server logs Spec Kit plan * Implement live server logs diagnostics module * Add server log sources and redaction hardening * Add diagnostics unit tests * Harden server log hub subscriptions * Secure server log hub permissions * Validate server log filter updates * Add diagnostics logger and source tests * Add diagnostics integration test project * Add multi-source diagnostics provider coverage * Broadcast server log source changes * Document diagnostics server log streaming * Add diagnostics sample host wiring * Record diagnostics validation results * Address server log PR feedback * Rename diagnostics module to server logs * Add server logs shell feature * Make server logs shell options bindable * Accept read wildcard for server logs * Align server logs authorization with API patterns * Update CShells structure and logging levels, add diagnostics module * Rename PostgreSql shell feature classes for consistency * Switch from Sqlite to PostgreSQL for workflow and identity persistence, add QuartzPostgreSql configuration * Refactor server logs into diagnostics structured logs (#7440) * Specify diagnostics structured logs refactor * docs: clarify structured logs spec * docs: plan diagnostics structured logs * docs: add diagnostics structured logs tasks * refactor: rename server logs to diagnostics structured logs * Refactor PostgreSql persistence features to use centralized entity model handler registration. * Refactor EFCore persistence features to centralize entity model handler registration for MySql, Sqlite, and Oracle providers. * Integrate structured logs by renaming server logs, adjusting appsettings, and updating project references. * Switch from PostgreSQL to Sqlite for workflow and identity persistence, update appsettings configuration.
63 lines
1.9 KiB
YAML
63 lines
1.9 KiB
YAML
# Git Branching Workflow Extension Configuration
|
|
# Copied to .specify/extensions/git/git-config.yml on install
|
|
|
|
# Branch numbering strategy: "sequential" (001, 002, ...) or "timestamp" (YYYYMMDD-HHMMSS)
|
|
branch_numbering: sequential
|
|
|
|
# Commit message used by `git commit` during repository initialization
|
|
init_commit_message: "[Spec Kit] Initial commit"
|
|
|
|
# Auto-commit before/after core commands.
|
|
# Set "default" to enable for all commands, then override per-command.
|
|
# Each key can be true/false. Message is customizable per-command.
|
|
auto_commit:
|
|
default: false
|
|
before_clarify:
|
|
enabled: false
|
|
message: "[Spec Kit] Save progress before clarification"
|
|
before_plan:
|
|
enabled: false
|
|
message: "[Spec Kit] Save progress before planning"
|
|
before_tasks:
|
|
enabled: false
|
|
message: "[Spec Kit] Save progress before task generation"
|
|
before_implement:
|
|
enabled: false
|
|
message: "[Spec Kit] Save progress before implementation"
|
|
before_checklist:
|
|
enabled: false
|
|
message: "[Spec Kit] Save progress before checklist"
|
|
before_analyze:
|
|
enabled: false
|
|
message: "[Spec Kit] Save progress before analysis"
|
|
before_taskstoissues:
|
|
enabled: false
|
|
message: "[Spec Kit] Save progress before issue sync"
|
|
after_constitution:
|
|
enabled: false
|
|
message: "[Spec Kit] Add project constitution"
|
|
after_specify:
|
|
enabled: false
|
|
message: "[Spec Kit] Add specification"
|
|
after_clarify:
|
|
enabled: false
|
|
message: "[Spec Kit] Clarify specification"
|
|
after_plan:
|
|
enabled: false
|
|
message: "[Spec Kit] Add implementation plan"
|
|
after_tasks:
|
|
enabled: false
|
|
message: "[Spec Kit] Add tasks"
|
|
after_implement:
|
|
enabled: false
|
|
message: "[Spec Kit] Implementation progress"
|
|
after_checklist:
|
|
enabled: false
|
|
message: "[Spec Kit] Add checklist"
|
|
after_analyze:
|
|
enabled: false
|
|
message: "[Spec Kit] Add analysis report"
|
|
after_taskstoissues:
|
|
enabled: false
|
|
message: "[Spec Kit] Sync tasks to issues"
|