소스 정보
- 저장소
- camel-ai/GBQA
- 최근 소스 활동
- 2026년 6월 24일 11:09
- 감지된 SKILL.md 언어
- 영어
- 스타
- 15
- 포크
- 6
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/camel-ai/GBQA --skill lifecycle명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | lifecycle |
| description | Task and session lifecycle control for multi-session QA exploration within one task. |
This skill is activated by default at run start. The harness records start_task
and start_session automatically when a task begins. Use the tools below when
you need finer-grained control over sessions during the same task.
These are recorded in lifecycle_events but are not planner tools:
start_task: emitted once when the run loop begins.start_session: emitted when the harness opens the first session.start_session: Open a new session and make it the active session. Does not
close any already-open sessions.end_session: Close one session only. Use session_id to close a specific
open session, or provide a reason alone to close the active session.new_session: Open a fresh session and make it active, regardless of whether
other sessions are already open. Does not close existing sessions.refresh_session: Refresh capability metadata for a specific session_id.
Use after environment resets or UI/tool changes in that session.switch_session: Change the active session to an already-open session_id.list_sessions: List the current active_session_id and all open_session_ids.start_session and new_session echo the new session_id plus the current
open-session list in their observation. Use list_sessions whenever you need to
re-check IDs before switch_session, refresh_session, or a targeted
end_session.
end_task: Finish the current QA task and stop the interaction loop when
enough evidence has been collected. In targeted GBQA tasks, task exit runs a
final fixed-format issue-report pass, so the reason should briefly identify
the reproduced bug and localization evidence.start_session: short reason for opening a sessionend_session: session_id or session_id reason, or a reason alone to end
the active sessionnew_session: short reason for opening a fresh sessionrefresh_session: session_idswitch_session: session_idlist_sessions: any non-empty text (ignored)end_task: short reason for finishing the tasknew_session when you want a clean exploration path without closing
older sessions you may still inspect later.end_session when a session is no longer needed and should release its
resources.list_sessions before switching, refreshing, or closing a specific
session when you are unsure of the current IDs.switch_session to alternate between multiple open sessions instead of
reopening the environment repeatedly.refresh_session after in-session resets that change available tools or
UI state.end_task only after you have enough reproduction and localization
evidence for the final issue report.