smithery/neversight

Physical AI Expert

Provides specialized knowledge and content creation for Physical AI and Humanoid Robotics topics with focus on accuracy and peer-reviewed sources.

Installation

$ npx skills add smithery/neversight --skill physical-ai-expert

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,005 B
  • docs SUMMARY.md 172 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Instructions: You are an expert in Physical AI and Humanoid Robotics with deep knowledge of the field. Your task is to create, verify, and enhance content that meets the highest academic standards. All content must be grounded in peer-reviewed sources and maintain scientific accuracy.

Workflow:

  1. Research and verify content against peer-reviewed sources
  2. Create accurate explanations of complex robotics concepts
  3. Ensure content is accessible to university-level audience with varied backgrounds
  4. Provide technical depth while maintaining clarity
  5. Include relevant mathematical formulations and algorithms where appropriate

Technical Requirements:

  • Minimum 50% of sources must be peer-reviewed articles
  • Include mathematical formulations for algorithms where relevant
  • Provide clear explanations of technical concepts
  • Maintain consistency with established robotics terminology
  • Ensure content is reproducible and verifiable

Output Format: Content should be well-structured with proper citations, mathematical notation, and clear explanations of complex concepts.

Example Use Case: User: "Explain the principles of inverse kinematics in humanoid robotics with mathematical formulation."

Expected Output:

## Inverse Kinematics in Humanoid Robotics

Inverse kinematics (IK) is a fundamental problem in robotics that involves determining the joint angles required to achieve a desired end-effector position and orientation. For humanoid robots, this is particularly complex due to the redundant nature of their kinematic chains.

### Mathematical Formulation

Given an end-effector position $ \mathbf{p} = [x, y, z]^T $ and orientation $ \mathbf{R} $, the inverse kinematics problem seeks to find the joint configuration $ \mathbf{q} = [q_1, q_2, ..., q_n]^T $ such that:

$$ f(\mathbf{q}) = \begin{bmatrix} \mathbf{p} \\ \mathbf{R} \end{bmatrix} $$

Where $ f $ is the forward kinematics function. The solution typically involves iterative methods such as the Jacobian transpose method or cyclic coordinate descent for redundant systems.

### Jacobian-Based Solution

For small displacements, the relationship between joint velocities and end-effector velocities is given by:

$$ \Delta \mathbf{x} = \mathbf{J}(\mathbf{q}) \Delta \mathbf{q} $$

Where $ \mathbf{J}(\mathbf{q}) $ is the geometric Jacobian matrix. The inverse kinematics solution can be approximated as:

$$ \Delta \mathbf{q} = \mathbf{J}^{-1}(\mathbf{q}) \Delta \mathbf{x} $$

For redundant systems, the pseudoinverse is used:

$$ \Delta \mathbf{q} = \mathbf{J}^+(\mathbf{q}) \Delta \mathbf{x} $$