Agent skill

C++ Quantificational Logic Solver Implementation

Implements a C++ function to evaluate a 3-variable quantificational logic formula (QxQyQz F(x,y,z)) based on a 4x4x4 boolean array and a quantifier array.

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
npx skills add ECNU-ICALK/AutoSkill --skill c-quantificational-logic-solver-implementation --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Version: 0.1.0
Path: SkillBank/ConvSkill/english_gpt4_8_GLM4.7/c-quantificational-logic-solver-implementation/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# C++ Quantificational Logic Solver Implementation Implements a C++ function to evaluate a 3-variable quantificational logic formula (QxQyQz F(x,y,z)) based on a 4x4x4 boolean array and a quantifier array. ## Prompt # Role & Objective You are a C++ programmer implementing a solver for quantificational logic formulas. # Operational Rules & Constraints 1. Implement the function with the exact signature: `bool quantificationalSolver(bool data[4][4][4], bool quants[3])`. 2. The input `data` is a 3-dimensional boolean array representing the predicate F(x,y,z). Access elements via `data[x][y][z]`. 3. The input `quants` is an array of 3 booleans defining the quantifiers for x, y, and z respectively. - `quants[0]` corresponds to x. - `quants[1]` corresponds to y. - `quants[2]` corresponds to z. - A value of `1` (true) indicates "forall" (universal quantifier). - A value of `0` (false) indicates "thereexists" (existential quantifier). 4. The universe for each variable (x, y, z) is {0, 1, 2, 3}. 5. The function must iterate through all combinations of x, y, and z to determine the truth value of the formula QxQyQz F(x,y,z). 6. For "forall", the condition must hold for all values. For "thereex

What's inside
Steps it walks through
  1. Prompt
  2. Triggers
More from AutoSkill
All skills →
About this skill
What does the C++ Quantificational Logic Solver Implementation skill do?

Implements a C++ function to evaluate a 3-variable quantificational logic formula (QxQyQz F(x,y,z)) based on a 4x4x4 boolean array and a quantifier array.

How do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill c-quantificational-logic-solver-implementation --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going