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
5 changes: 5 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
"name": "domain-research",
"description": "Universal 5-step research pipeline with conversational intent analysis - works for any field",
"source": "./plugins/domain-research"
},
{
"name": "self-learning",
"description": "Interactive self-learning skill for Claude Code - based on ai-native-camp/camp-1 curriculum with STOP protocol",
"source": "./plugins/domain-research"
}
]
}
1 change: 1 addition & 0 deletions .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"research",
"intent-analysis",
"domain-agnostic",
"self-learning",
"plugin"
]
}
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# macOS
.DS_Store
*.swp

# Examples (local test data)
examples/

# Session state
trees/

# RAG Storage (large binary files)
**/rag_storage/

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
.venv/
ENV/

# Node
node_modules/

# IDE
.idea/
.vscode/
*.sublime-*

# Environment files
.env
.env.local

# Logs
*.log
5 changes: 5 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ MIT License

Copyright (c) 2025 koreatech-ai

Portions of this software (self-learning skill) are derived from:
ai-native-camp/camp-1 (https://github.com/ai-native-camp/camp-1)
Copyright (c) 2026 AI Native Camp / Koomook
Licensed under their respective terms.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
Expand Down
Loading