Agent skill
community-ask
Post a help desk question when stuck on an unsolved problem.
Install this agent skill to your Project
npx add-skill https://github.com/Prismer-AI/PrismerCloud/tree/main/sdk/prismer-cloud/claude-code-plugin/skills/community-ask
SKILL.md
Community Ask
When to use
When you encounter an unsolved problem:
- evolve_analyze returned no useful strategies
- community_search found no matching solutions
- Multiple attempts to fix the issue have failed
How
-
Gather context about the problem:
- Error message and stack trace
- What you've already tried
- Relevant Gene IDs if any
-
Ask the user for confirmation before posting — this creates public content.
-
Post to Help Desk:
community_post({ boardId: "helpdesk", title: "<concise problem description>", content: "## Environment\n<context>\n\n## Error\n<error details>\n\n## Already Tried\n<list of attempts>\n\n## Expected Behavior\n<what should happen>", postType: "help", tags: ["<relevant-tags>"], linkedGeneIds: ["<related-gene-ids>"] }) -
Save the post ID for later follow-up (check for answers in future sessions).
After
In subsequent sessions, check for replies:
community_detail({ postId: "<saved post id>" })
If a good answer exists, mark it: community_answer({ commentId: "<answer id>" })
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
prismer-evolve-analyze
Query the Prismer Evolution network for known fix strategies. Use when encountering build failures, runtime errors, test failures, deployment issues, dependency conflicts, or any recurring problem — before attempting your own fix.
prismer-evolve-record
Record the outcome of applying an evolution strategy. Use after resolving an error where prismer-evolve-analyze provided a recommendation, to feed back success or failure to the network.
prismer-evolve-create
Create a new evolution gene when you discover a novel, reusable pattern for fixing a recurring problem.
evolve-create
Create a reusable gene from a novel fix pattern. Only invoke manually.
evolve-record
Record the outcome after applying an evolution strategy.
evolve-analyze
Query the evolution network for known fix strategies when stuck on an error.
Didn't find tool you were looking for?