원클릭으로
score-length
Score the length of a given theory.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Score the length of a given theory.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Design and propose the next step: either a regular data-gathering experiment, literature search, or a concrete solution candidate.
Determine the type of proposal given, execute/delegate accordingly, and return the appropriate resulting ID (experiment ID, literature search ID, or solution ID).
Score and rank solution candidates relative to the research goal, and update parent theory scores.
Integrate recent interpretations from the interpretation log into the associated theory.
Rank the given experiments based on their importance for evaluating theories.
Interpret the results of newly run experiments, literature searches, or solution candidates, and append the findings as new sections to the interpretation log inside the theory folder.
| name | score-length |
| description | Score the length of a given theory. |
| argument-hint | the theory ID to score (e.g. T_20260414_143100_d4e5f6). Optionally, a STANDARD_LENGTH value. |
| user-invocable | false |
Your task is to assess the length of a given theory based on its content.
Besides the theory to score, you may optionally be given a STANDARD_LENGTH value. The default STANDARD_LENGTH, if not specified, is 7000 words.
theory.md in number of words, excluding any conclusion sections and appendices, as well as any introductory sections (such as phenomenon descriptions, overviews and summary sections, statement/content tables, prior art comparisons, etc):theory.md file (e.g. grep -n '^#' <CONTEXT_DIR>/theory/theory.md).head -n 500 <CONTEXT_DIR>/theory/theory.md | tail -n +50 | wc -w).Length Score = 1 / (1 + (words_in_main_body / STANDARD_LENGTH)**3), where words_in_main_body is the number of words in the main body of the theory. Round to two decimal places. Use ad-hoc Python code to perform this calculation, as described above.