Lets a project mute individual rules or whole topics from rulebooks it subscribes to, without unsubscribing the rulebook. Two new association tables (migration 0060), 4 MCP tools (suppress/unsuppress × rule/topic), 4 REST endpoints, and an inline "× skip" affordance plus collapsed "Suppressed (N)" section in the project's Rules tab. get_applicable_rules now emits suppressed_rules and suppressed_topics (detail objects with rulebook/topic context, not just IDs) so the UI can render the suppressed list without a follow-up lookup. The main rules projection grew topic_id and rulebook_id columns for the per-row suppress affordance. Project deletion cascades the suppression rows via hard DELETE — they are pure associations with no soft-delete column, and restoring a deleted project should start fresh, not inherit stale mutes. Project-scoped rules (Rule.project_id) are deliberately not suppressible — delete them with delete_rule instead. Implements plan-task #187. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
67 lines
2.0 KiB
Python
67 lines
2.0 KiB
Python
"""Planning service — start_planning aggregates plan-task creation with the
|
|
project's applicable Rulebook rules and a little context, so planning happens
|
|
in Scribe and rules surface at the planning moment.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
from fabledassistant.services import notes as notes_svc
|
|
from fabledassistant.services import projects as projects_svc
|
|
from fabledassistant.services import rulebooks as rulebooks_svc
|
|
|
|
PLAN_TEMPLATE = """## Goal
|
|
|
|
## Approach
|
|
|
|
## Steps
|
|
- [ ]
|
|
|
|
## Verification
|
|
"""
|
|
|
|
|
|
async def start_planning(user_id: int, project_id: int, title: str) -> dict:
|
|
"""Create a plan-task seeded with the plan template and return it with the
|
|
project's applicable rules + brief context.
|
|
|
|
Returns:
|
|
{
|
|
"task": <task dict>,
|
|
"applicable_rules": [...],
|
|
"subscribed_rulebooks": [...],
|
|
"applicable_rules_truncated": bool,
|
|
"project_goal": str,
|
|
"open_task_count": int,
|
|
}
|
|
"""
|
|
project = await projects_svc.get_project(user_id, project_id)
|
|
if project is None:
|
|
raise ValueError(f"project {project_id} not found")
|
|
|
|
note = await notes_svc.create_note(
|
|
user_id,
|
|
title=title,
|
|
body=PLAN_TEMPLATE,
|
|
status="todo",
|
|
task_kind="plan",
|
|
project_id=project_id,
|
|
)
|
|
|
|
applicable = await rulebooks_svc.get_applicable_rules(
|
|
project_id=project_id, user_id=user_id,
|
|
)
|
|
_, open_count = await notes_svc.list_notes(
|
|
user_id, is_task=True, status="todo", project_id=project_id, limit=1,
|
|
)
|
|
|
|
return {
|
|
"task": note.to_dict(),
|
|
"applicable_rules": applicable["rules"],
|
|
"subscribed_rulebooks": applicable["subscribed_rulebooks"],
|
|
"applicable_rules_truncated": applicable["truncated"],
|
|
"project_rules": applicable.get("project_rules", []),
|
|
"suppressed_rules": applicable.get("suppressed_rules", []),
|
|
"suppressed_topics": applicable.get("suppressed_topics", []),
|
|
"project_goal": getattr(project, "goal", "") or "",
|
|
"open_task_count": open_count,
|
|
}
|