Skip to main content

ScaffoldConfig

Struct ScaffoldConfig 

Source
pub struct ScaffoldConfig {
Show 28 fields pub generate_claude_md: bool, pub generate_agents_md: bool, pub generate_commands: bool, pub generate_skills: bool, pub generate_codex_skills: bool, pub include_aida_req_skill: bool, pub include_aida_plan_skill: bool, pub include_aida_implement_skill: bool, pub include_aida_capture_skill: bool, pub include_aida_docs_skill: bool, pub include_aida_release_skill: bool, pub include_aida_evaluate_skill: bool, pub include_aida_commit_skill: bool, pub include_aida_sync_skill: bool, pub include_aida_test_skill: bool, pub include_aida_review_skill: bool, pub include_aida_onboard_skill: bool, pub include_aida_sprint_skill: bool, pub include_aida_search_skill: bool, pub include_aida_standup_skill: bool, pub generate_git_hooks: bool, pub include_commit_msg_hook: bool, pub include_pre_commit_hook: bool, pub generate_claude_code_hooks: bool, pub include_validate_commit_hook: bool, pub include_track_commits_hook: bool, pub project_type: ProjectType, pub tech_stack: Vec<String>,
}
Expand description

Configuration for what scaffolding artifacts to generate

Fields§

§generate_claude_md: bool

Generate CLAUDE.md project instructions

§generate_agents_md: bool

Generate AGENTS.md project instructions for Codex-compatible agents

§generate_commands: bool

Generate .claude/commands/ directory with slash commands

§generate_skills: bool

Generate .claude/skills/ directory with skills

§generate_codex_skills: bool

Generate .codex/skills/ directory with Codex-compatible skills

§include_aida_req_skill: bool

Include aida-req skill for requirement creation

§include_aida_plan_skill: bool

Include aida-plan skill for implementation planning

§include_aida_implement_skill: bool

Include aida-implement skill for requirement implementation

§include_aida_capture_skill: bool

Include aida-capture skill for session review

§include_aida_docs_skill: bool

Include aida-docs skill for documentation management

§include_aida_release_skill: bool

Include aida-release skill for release management

§include_aida_evaluate_skill: bool

Include aida-evaluate skill for requirement quality evaluation

§include_aida_commit_skill: bool

Include aida-commit skill for commit with requirement linking

§include_aida_sync_skill: bool

Include aida-sync skill for template synchronization

§include_aida_test_skill: bool

Include aida-test skill for test generation linked to requirements

§include_aida_review_skill: bool

Include aida-review skill for code review against specs

§include_aida_onboard_skill: bool

Include aida-onboard skill for project onboarding

§include_aida_sprint_skill: bool

Include aida-sprint skill for sprint planning

§include_aida_search_skill: bool

Include aida-search skill for unified search

§include_aida_standup_skill: bool

Include aida-standup skill for daily standup generation

§generate_git_hooks: bool

Generate git hooks for traceability validation

§include_commit_msg_hook: bool

Include commit-msg hook for AI attribution validation

§include_pre_commit_hook: bool

Include pre-commit hook for trace comment validation

§generate_claude_code_hooks: bool

Generate Claude Code hooks for AIDA integration

§include_validate_commit_hook: bool

Include commit validation hook (PreToolUse)

§include_track_commits_hook: bool

Include commit tracking hook (PostToolUse)

§project_type: ProjectType

Custom project type for specialized scaffolding

§tech_stack: Vec<String>

Tech stack hints for context generation

Trait Implementations§

Source§

impl Clone for ScaffoldConfig

Source§

fn clone(&self) -> ScaffoldConfig

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ScaffoldConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ScaffoldConfig

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for ScaffoldConfig

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for ScaffoldConfig

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,