lfy-pipeline
Original:🇨🇳 Chinese
Translated
Business opportunity query skill. It is applicable to searching business opportunity lists by keywords. Use this skill when users need to search for business opportunities by keywords.
5installs
Source6fy/lfy-cli
Added on
NPX Install
npx skill4agent add 6fy/lfy-cli lfy-pipelineTags
Translated version includes tags in frontmatterSKILL.md Content (Chinese)
View Translation Comparison →Business Opportunity Query Skill
is a command-line program provided by Lufenyi. All operations are completed by executing thelfy-clicommand.lfy-cli
Interact with the business opportunity system via .
lfy-cli pipeline <interface name> ' 'Notes
- If is empty, it may return errors or incomplete results
keywords - If is not
errcodeor the returned format is abnormal, you need to inform the user of the error message0 - If the search result is empty, inform the user that no corresponding business opportunity is found
- Technical fields such as and
pipeline_idare not displayed by defaultstage_id
API List
Search Business Opportunities (search)
bash
lfy-cli pipeline search '{"keywords": "<keywords>"}'Search for business opportunities by keyword, supporting fuzzy matching.
See API Details.
Get Business Opportunity Stage (get_sales_stage)
bash
lfy-cli pipeline get_sales_stage '{"gtm_id": <gtm_id>}'Get the list of business opportunity stages based on GTM ID, including stage name, milestone goal, value proposition and other information.
See API Details.
Typical Workflow
Search for Business Opportunities
Classic query examples:
- "Help me search for business opportunities related to 'technology'"
- "Find business opportunities that include 'future'"
- "What are the business opportunities with the keyword 'Chengdu'?"
Process:
- Extract keywords provided by the user
- Call the command to search for business opportunities
search - Filter business opportunities whose contains the keyword from the results
pipeline_name - If a unique match is found, display the result directly
- If multiple matches are found, display the first 10 at most, and inform the user to provide a more specific business opportunity name if precise matching is required
Display result:
📇 1 business opportunity found for you: <pipeline_name>
When no result is found:
No business opportunities containing "<keywords>" are matched. Please try asking me in a more specific way, for example: "Help me search for business opportunities related to 'technology'".Get Business Opportunity Stage
Classic query examples:
- "Help me check the stage information of this business opportunity"
- "Get business opportunity stage"
- "What step is this business opportunity at?"
Process:
- Extract the provided by the user
gtm_id - Call the command to get stage information
get_sales_stage - Display the stage list information
Display result:
📋 Business opportunity stage information:
| Stage Name | Milestone Goal | Value Proposition | Suggested Days |
|---|---|---|---|
| <stage_name> | <milestone_goal> | <value_proposition> | <suggested_stage_days> days |