Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 83 additions & 0 deletions .agents/skills/RustyRed-Graph-Database/SKILL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
```markdown
# RustyRed-Graph-Database Development Patterns

> Auto-generated skill from repository analysis

## Overview
This skill provides guidance on contributing to the RustyRed-Graph-Database project, a Rust-based graph database implementation. It documents the project's coding conventions, commit patterns, and testing approaches to ensure consistency and maintainability. This guide is ideal for developers looking to contribute code, write tests, or maintain the repository.

## Coding Conventions

### File Naming
- Use **camelCase** for file names.
- Example: `graphEngine.rs`, `nodeManager.rs`

### Import Style
- Use **relative imports** for referencing modules within the project.
- Example:
```rust
mod nodeManager;
use crate::nodeManager::Node;
```

### Export Style
- Use **named exports** to expose specific structs, enums, or functions.
- Example:
```rust
pub struct Graph { /* ... */ }
pub fn create_node() { /* ... */ }
```

### Commit Messages
- Follow **conventional commit** style.
- Use the `feat` prefix for new features.
- Keep commit messages concise (average ~38 characters).
- Example:
```
feat: add edge deletion support
```

## Workflows

### Feature Development
**Trigger:** When adding a new feature to the codebase
**Command:** `/feature-development`

1. Create a new branch for your feature.
2. Implement the feature following the coding conventions.
3. Write or update tests in files matching `*.test.*`.
4. Commit your changes using the `feat` prefix and a concise message.
5. Submit a pull request for review.

### Testing Code
**Trigger:** When verifying code correctness
**Command:** `/run-tests`

1. Identify or create test files using the `*.test.*` pattern.
2. Run tests using the project's preferred testing command (framework unknown; typically `cargo test` for Rust).
3. Review test results and fix any failing cases.

## Testing Patterns

- Test files follow the `*.test.*` naming convention (e.g., `graphEngine.test.rs`).
- The specific testing framework is not detected, but Rust's built-in test framework is likely.
- Example test module:
```rust
#[cfg(test)]
mod tests {
use super::*;

#[test]
fn test_create_node() {
let node = create_node();
assert!(node.is_valid());
}
}
```

## Commands
| Command | Purpose |
|----------------------|------------------------------------------|
| /feature-development | Start the feature development workflow |
| /run-tests | Run all tests in the repository |
```
6 changes: 6 additions & 0 deletions .agents/skills/RustyRed-Graph-Database/agents/openai.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
interface:
display_name: "RustyRed Graph Database"
short_description: "Repo-specific patterns and workflows for RustyRed-Graph-Database"
default_prompt: "Use the RustyRed-Graph-Database repo skill to follow existing architecture, testing, and workflow conventions."
policy:
allow_implicit_invocation: true
227 changes: 227 additions & 0 deletions .claude/ecc-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,227 @@
{
"version": "1.3",
"schemaVersion": "1.0",
"generatedBy": "ecc-tools",
"generatedAt": "2026-06-11T18:10:50.922Z",
"repo": "https://github.com/Travis-Gilbert/RustyRed-Graph-Database",
"referenceSetReadiness": {
"score": 0,
"present": 0,
"total": 7,
"items": [
{
"id": "deep-analyzer-corpus",
"label": "Deep analyzer corpus",
"status": "missing",
"evidence": [],
"recommendation": "Add analyzer fixture, golden, benchmark, or reference-set files that can catch analyzer regressions."
},
{
"id": "rag-evaluator",
"label": "RAG/evaluator comparison",
"status": "missing",
"evidence": [],
"recommendation": "Add retrieval or evaluator reference-set comparison fixtures with expected ranking behavior."
},
{
"id": "pr-salvage",
"label": "PR salvage/review corpus",
"status": "missing",
"evidence": [],
"recommendation": "Add stale-PR, review-thread, reopen-flow, or salvage reference cases for queue cleanup automation."
},
{
"id": "discussion-triage",
"label": "Discussion triage corpus",
"status": "missing",
"evidence": [],
"recommendation": "Add public discussion triage fixtures, golden cases, or reference sets for informational, answered, and no-response classifications."
},
{
"id": "harness-compatibility",
"label": "Harness compatibility",
"status": "missing",
"evidence": [],
"recommendation": "Add cross-harness, adapter-compliance, or harness-audit evidence for Claude, Codex, OpenCode, Zed, dmux, and agent surfaces."
},
{
"id": "security-evidence",
"label": "Security evidence",
"status": "missing",
"evidence": [],
"recommendation": "Attach security evidence such as SBOMs, SARIF, audit reports, or AgentShield evidence packs."
},
{
"id": "ci-failure-mode",
"label": "CI failure-mode evidence",
"status": "missing",
"evidence": [],
"recommendation": "Add captured CI failure logs, dry-run fixtures, or troubleshooting docs for common workflow failure modes."
}
]
},
"profiles": {
"requested": "core",
"recommended": "core",
"effective": "core",
"requestedAlias": "core",
"recommendedAlias": "core",
"effectiveAlias": "core"
},
"requestedProfile": "core",
"profile": "core",
"recommendedProfile": "core",
"effectiveProfile": "core",
"tier": "free",
"requestedComponents": [
"repo-baseline"
],
"selectedComponents": [
"repo-baseline"
],
"requestedAddComponents": [],
"requestedRemoveComponents": [],
"blockedRemovalComponents": [],
"tierFilteredComponents": [],
"requestedRootPackages": [
"runtime-core"
],
"selectedRootPackages": [
"runtime-core"
],
"requestedPackages": [
"runtime-core"
],
"requestedAddPackages": [],
"requestedRemovePackages": [],
"selectedPackages": [
"runtime-core"
],
"packages": [
"runtime-core"
],
"blockedRemovalPackages": [],
"tierFilteredRootPackages": [],
"tierFilteredPackages": [],
"conflictingPackages": [],
"dependencyGraph": {
"runtime-core": []
},
"resolutionOrder": [
"runtime-core"
],
"requestedModules": [
"runtime-core"
],
"selectedModules": [
"runtime-core"
],
"modules": [
"runtime-core"
],
"managedFiles": [
".claude/skills/RustyRed-Graph-Database/SKILL.md",
".agents/skills/RustyRed-Graph-Database/SKILL.md",
".agents/skills/RustyRed-Graph-Database/agents/openai.yaml",
".claude/identity.json",
".codex/config.toml",
".codex/AGENTS.md",
".codex/agents/explorer.toml",
".codex/agents/reviewer.toml",
".codex/agents/docs-researcher.toml",
".claude/homunculus/instincts/inherited/RustyRed-Graph-Database-instincts.yaml"
],
"packageFiles": {
"runtime-core": [
".claude/skills/RustyRed-Graph-Database/SKILL.md",
".agents/skills/RustyRed-Graph-Database/SKILL.md",
".agents/skills/RustyRed-Graph-Database/agents/openai.yaml",
".claude/identity.json",
".codex/config.toml",
".codex/AGENTS.md",
".codex/agents/explorer.toml",
".codex/agents/reviewer.toml",
".codex/agents/docs-researcher.toml",
".claude/homunculus/instincts/inherited/RustyRed-Graph-Database-instincts.yaml"
]
},
"moduleFiles": {
"runtime-core": [
".claude/skills/RustyRed-Graph-Database/SKILL.md",
".agents/skills/RustyRed-Graph-Database/SKILL.md",
".agents/skills/RustyRed-Graph-Database/agents/openai.yaml",
".claude/identity.json",
".codex/config.toml",
".codex/AGENTS.md",
".codex/agents/explorer.toml",
".codex/agents/reviewer.toml",
".codex/agents/docs-researcher.toml",
".claude/homunculus/instincts/inherited/RustyRed-Graph-Database-instincts.yaml"
]
},
"files": [
{
"moduleId": "runtime-core",
"path": ".claude/skills/RustyRed-Graph-Database/SKILL.md",
"description": "Repository-specific Claude Code skill generated from git history."
},
{
"moduleId": "runtime-core",
"path": ".agents/skills/RustyRed-Graph-Database/SKILL.md",
"description": "Codex-facing copy of the generated repository skill."
},
{
"moduleId": "runtime-core",
"path": ".agents/skills/RustyRed-Graph-Database/agents/openai.yaml",
"description": "Codex skill metadata so the repo skill appears cleanly in the skill interface."
},
{
"moduleId": "runtime-core",
"path": ".claude/identity.json",
"description": "Suggested identity.json baseline derived from repository conventions."
},
{
"moduleId": "runtime-core",
"path": ".codex/config.toml",
"description": "Repo-local Codex MCP and multi-agent baseline aligned with ECC defaults."
},
{
"moduleId": "runtime-core",
"path": ".codex/AGENTS.md",
"description": "Codex usage guide that points at the generated repo skill and workflow bundle."
},
{
"moduleId": "runtime-core",
"path": ".codex/agents/explorer.toml",
"description": "Read-only explorer role config for Codex multi-agent work."
},
{
"moduleId": "runtime-core",
"path": ".codex/agents/reviewer.toml",
"description": "Read-only reviewer role config focused on correctness and security."
},
{
"moduleId": "runtime-core",
"path": ".codex/agents/docs-researcher.toml",
"description": "Read-only docs researcher role config for API verification."
},
{
"moduleId": "runtime-core",
"path": ".claude/homunculus/instincts/inherited/RustyRed-Graph-Database-instincts.yaml",
"description": "Continuous-learning instincts derived from repository patterns."
}
],
"workflows": [],
"adapters": {
"claudeCode": {
"skillPath": ".claude/skills/RustyRed-Graph-Database/SKILL.md",
"identityPath": ".claude/identity.json",
"commandPaths": []
},
"codex": {
"configPath": ".codex/config.toml",
"agentsGuidePath": ".codex/AGENTS.md",
"skillPath": ".agents/skills/RustyRed-Graph-Database/SKILL.md"
}
}
}
Loading
Loading