feat(mma): Implement Role-Scoped Document selection logic

This commit is contained in:
2026-02-25 19:12:02 -05:00
parent 067cfba7f3
commit 55c0fd1c52
2 changed files with 21 additions and 2 deletions

View File

@@ -1,5 +1,14 @@
import argparse
def get_role_documents(role: str) -> list[str]:
if role == 'tier1':
return ['conductor/product.md', 'conductor/product-guidelines.md']
elif role == 'tier2':
return ['conductor/tech-stack.md', 'conductor/workflow.md']
elif role == 'tier3':
return ['conductor/workflow.md']
return []
def create_parser():
parser = argparse.ArgumentParser(description="MMA Execution Script")
parser.add_argument(
@@ -20,6 +29,9 @@ def main():
args = parser.parse_args()
print(f"Role: {args.role}")
print(f"Prompt: {args.prompt}")
docs = get_role_documents(args.role)
print(f"Selected Documents: {docs}")
if __name__ == "__main__":
main()