plan_store

Read and save five-section protection plans to the business database.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/huangxn27/broadband-agent-demo --skill plan-store
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: plan_store
Source: https://github.com/huangxn27/broadband-agent-demo/tree/main/backend/skills/plan_store
Command: npx skills add https://github.com/huangxn27/broadband-agent-demo --skill plan-store

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

方案持久化:读取或保存当前用户保障方案到业务数据库,供编辑方案场景和方案确认后持久化使用

Core Features & Use Cases

  • 方案可在编辑阶段从内存读取并持久化到数据库,或从数据库读取最新方案供继续编辑和确认使用
  • 支持读取当前方案(read_plan)与保存完整五段式方案文本(save_plan),确保流程的一致性和审计能力
  • 适用于 PlanningAgent 在多阶段工作流中对方案的获取、编辑与最终落地存储场景

Quick Start

Use the plan_store skill to read or save the current plan as needed.

Frequently Asked Questions about plan_store

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I persist user plans to a database across multiple planning sessions?

You can persist user plans to a database by reading or saving the current plan text during multi-step workflows, ensuring the plan remains available across different planning sessions for continued editing or final confirmation.

What format is required when saving a plan to the business database?

Saving a plan to the business database requires a complete five-section plan text. The system enforces this structure before writing to the database and returns a JSON response containing the save status and timestamp upon success.

Can I retrieve an existing plan from the database for further editing?

Yes, you can retrieve an existing plan from the database using the read functionality. This allows you to fetch the latest saved plan text so you can continue editing or proceed to final confirmation within your workflow.

Do I need valid database access to read and save plans?

Yes, valid database access is required to both read and save plans. The skill interacts directly with the business database to store the complete five-section plan text and to retrieve existing plans for ongoing sessions.

What does the API return after successfully saving a protection plan?

After successfully saving a protection plan, the API returns a JSON object containing the save status and a timestamp. This confirms the five-section plan text has been securely written to the database.

When should I use plan persistence in a multi-step workflow?

You should use plan persistence in a multi-step workflow when you need to read a plan for editing or save it after final confirmation. This ensures consistency and auditability when managing plans across multiple stages.