meego-manage

Create, query, update, and drive workflow transitions for Meego work items.

Updated Apr 30, 2026
One-click install
npx skills add https://github.com/yuezhen-huang/my-bytedance-skillhub --skill meego-manage-yuezhen-huang
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: meego-manage
Source: https://github.com/yuezhen-huang/my-bytedance-skillhub/tree/main/meego-manage
Command: npx skills add https://github.com/yuezhen-huang/my-bytedance-skillhub --skill meego-manage-yuezhen-huang

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Managing Meego work items (tasks, stories, issues) through the web UI is slow and hard to automate. This Skill lets you search, create, update, and drive workflow transitions on Meego work items directly through an AI agent, with guided field discovery and local templates that remember your project defaults. ## Core Features & Use Cases - Full work item lifecycle: Query across projects, get details with selective fields and expansions, create items with a two-step preview-and-confirm flow, and update fields with before/after confirmation. - Workflow operations: Query node-flow or state-flow details, update node schedules and owners, confirm or rollback nodes, and perform state transitions via transition_id. - Local templates and config: Persist project_key and per-type creation templates in ./.gdpa/meego.yaml so repeated creation only requires the fields you want to change. - Use Case: Ask the agent to create a new issue in your project; it fetches field metadata, shows required fields and template options, lets you confirm, then creates the item and saves a reusable local template. ## Quick Start Ask the agent to query my open Meego tasks in project X, or to create a new issue named 'fix login bug' and walk me through the required fields before confirming.

Frequently Asked Questions about meego-manage

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

FAQPage Schema
How do I create a Meego work item from the command line?

Run the create action with work_item_type_key and name first to fetch field metadata and required fields, then confirm with confirm_create=true and field_value_pairs. The two-step flow prevents invalid submissions and can reuse a local template for default field values.

How do I transition a Meego issue to another state?

First call query_workflow with flow_type=1 to get the connections list and the target transition_id, then call state_change with that transition_id. State-flow transitions only work for state-flow work item types like issues.

Can I update a Meego work item without confirming first?

No. The update action enforces a two-step flow: the first call returns an update_suggestion showing current versus new values, and the change only applies after you pass confirm_update=true. This prevents accidental field overwrites.

Why does Meego reject my field with 'field is illegal' error?

This usually happens when the template field is placed in field_value_pairs instead of the top-level template_id parameter, or when bootstrap fields come from a different template. Pass template_id at the top level and choose a same-template source work item.

How do I complete a Meego node blocked by a signal field?

Signal fields are written by CI or QA systems and cannot be set via the API. Instead, find the corresponding 'manual complete' boolean field via the fields action, set it to true with the update action, and Meego will auto-advance the node.