Loading...
Loading...
Interactive project initialization with git setup, workflows, hooks, and build configuration. project setup, initialization, scaffold, bootstrap, new project.
npx skill4agent add athola/claude-night-market project-initmodules/language-detection.mdmodules/metadata-collection.mdls -la--helpmodules/template-rendering.mdpython3 plugins/attune/scripts/attune_init.py \
--lang {{LANGUAGE}} \
--name {{PROJECT_NAME}} \
--author {{AUTHOR}} \
--email {{EMAIL}} \
--python-version {{PYTHON_VERSION}} \
--description {{DESCRIPTION}} \
--path .--help# Check if git is initialized
if [ ! -d .git ]; then
git init
echo "Git repository initialized"
figit status# Check Makefile targets
make help
# List created files
git statusgit status# Install dependencies and hooks
make dev-setup
# Run tests to verify setup
make test
# See all available commands
make helppytest -v--langchmod +xmake helpmake test**Verification:** Run `pytest -v` to verify tests pass.
User: /attune:project-init
## Troubleshooting
### Common Issues
**Command not found**
Ensure all dependencies are installed and in PATH
**Permission errors**
Check file permissions and run with appropriate privileges
**Unexpected behavior**
Enable verbose logging with `--verbose` flag