add_project_section
Add a new section to a project's main.md file, specifying header, content, and position (before, after, or end). Use reference headers for precise placement. Returns success status and details.
Instructions
Add a new section to the project main.md file. The section can be positioned at the end, or before/after a reference section. The section_header must include the "## " prefix. Returns: {success: bool, message?: str, error?: str}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content for the new section | |
position | No | Where to insert the section (default: "end") | |
project_id | Yes | The project identifier | |
reference_header | No | The section header to use as reference point for before/after positioning | |
section_header | Yes | The new section header (e.g., "## Configuration") |