Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计通过

polyglot-rust-cpolyglot Rust C 搜索

Agent Skill

polyglot-rust-c 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

840

周安装

34

GitHub Stars

93

下载量

264
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:polyglot-rust-c(polyglot Rust C 搜索)
来源仓库:https://github.com/letta-ai/skills
仓库路径:skills/polyglot-rust-c
安装命令:
npx skills add https://github.com/letta-ai/skills --skill polyglot-rust-c
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill polyglot-rust-c

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。
  • 可结合关键词、任务场景或来源线索使用。
  • 安装命令:npx skills add https://github.com/letta-ai/skills --skill polyglot-rust-c
  • 建议确认权限范围及是否触发联网或文件读写。

SKILL.md

Polyglot Rust/C Programming

This skill provides structured guidance for creating source files that compile and execute correctly as both Rust and C/C++ programs.

Core Principle: Action Over Analysis

The most critical lesson for polyglot tasks: start writing code immediately. Polyglot programming requires empirical validation through actual compilation. Mental reasoning alone cannot account for all syntax edge cases across languages.

Recommended Workflow

Phase 1: Establish Working Environment

  1. Create the required output directory and file immediately
  2. Verify both compilers are available (rustc --version, g++ --version or gcc --version)
  3. Set up a rapid iteration loop for testing

Phase 2: Incremental Development Strategy

Do not attempt to solve everything at once. Follow this progression:

  1. Single-language baseline: Write a working solution in one language first (typically C/C++ as it has more flexible syntax)
  2. Minimal polyglot shell: Create the simplest possible file that compiles in both languages (even if it does nothing useful)
  3. Gradual feature addition: Add functionality piece by piece, testing after each change

Phase 3: Iterative Testing

After every code change:

# Test Rust compilation and execution
rustc source_file -o rust_binary && ./rust_binary [args]

# Test C++ compilation and execution
g++ source_file -o cpp_binary && ./cpp_binary [args]

Key Polyglot Techniques

Comment Syntax Exploitation

The fundamental approach exploits differences in comment handling:

PatternRust InterpretationC/C++ Interpretation
//Line commentLine comment
/* */Block commentBlock comment
/*/Starts block commentEnds then starts comment
//*/Line commentEnds block comment

Preprocessor Directive Hiding

C/C++ preprocessor directives can hide Rust code from C:

  • #if 0... #endif blocks are ignored by C preprocessor
  • Rust sees #if 0 as a compiler directive (usually errors) or can be hidden in comments

Recommended Skeleton Structure

A common pattern:

  1. Use C-style block comments to hide Rust-specific code from C
  2. Use #if 0 blocks to hide C-specific code from Rust
  3. Share common logic where syntax overlaps

Verification Checklist

Before considering the task complete:

  • File exists at the required path
  • rustc compiles without errors
  • g++ (or gcc) compiles without errors
  • Rust binary produces correct output for all test cases
  • C++ binary produces correct output for all test cases
  • Edge cases tested (boundary values, error conditions)

Common Pitfalls to Avoid

1. Analysis Paralysis

Problem: Spending excessive time reasoning about syntax without writing code. Solution: Write code first, let compiler errors guide iteration.

2. No File Creation

Problem: Extensive planning but never creating the actual output file. Solution: Create the file within the first few actions, even with placeholder content.

3. Ignoring Compiler Feedback

Problem: Trying to predict all syntax issues mentally. Solution: Use compiler error messages as the primary debugging tool.

4. Over-Engineering Initial Attempt

Problem: Trying complex polyglot patterns before confirming basics work. Solution: Start with the simplest possible valid program, then add complexity.

5. Not Testing Both Languages After Each Change

Problem: Making multiple changes then discovering which one broke compilation. Solution: Test both compilers after every single modification.

6. Forgetting Functional Requirements

Problem: Focusing only on polyglot validity, forgetting the actual task (e.g., Fibonacci calculation). Solution: Verify output correctness, not just compilation success.

Progress Tracking Template

Maintain explicit progress markers:

[x] Directory created
[x] Initial file created
[ ] Compiles as Rust
[ ] Compiles as C++
[ ] Correct output (Rust): test case 1
[ ] Correct output (C++): test case 1
[ ] All test cases pass

Debugging Strategy

When compilation fails:

  1. Read the error message carefully - it usually points to the exact issue
  2. Test the failing language in isolation - comment out polyglot tricks temporarily
  3. Simplify - remove features until it compiles, then add back incrementally
  4. Document what works - keep notes on patterns confirmed to work

Time Management

If stuck in exploration for more than a few minutes:

  1. Stop theorizing
  2. Write the simplest possible attempt
  3. Run both compilers
  4. Iterate based on actual errors

The compiler is the oracle - use it frequently rather than reasoning through edge cases.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.3%
按下载量换算77

Gemini CLI

21.35%
按下载量换算56

Codex

18.63%
按下载量换算49

Antigravity

13.58%
按下载量换算36

OpenCode

7.94%
按下载量换算21

windsurf

3.3%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/letta-ai/skills --skill polyglot-rust-c;npx skills add letta-ai/skills --skill "polyglot-rust-c" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills