Skip to content

Commit 35e4d27

Browse files
xkcodingclaude
andcommitted
Update README and add .gitignore
- Update focus area to User Behavior Analytics Platform & AI Agent - Remove WeChat Official Account section - Add .gitignore for IDE and tool files - Add profile assets (stats, trophy, icons) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent a238d1c commit 35e4d27

10 files changed

Lines changed: 91 additions & 39 deletions

File tree

.github/icons/docker.svg

Lines changed: 1 addition & 0 deletions
Loading

.github/icons/go.svg

Lines changed: 1 addition & 0 deletions
Loading

.github/icons/java.svg

Lines changed: 1 addition & 0 deletions
Loading

.github/icons/openai.svg

Lines changed: 1 addition & 0 deletions
Loading

.github/icons/python.svg

Lines changed: 1 addition & 0 deletions
Loading

.github/icons/rust.svg

Lines changed: 1 addition & 0 deletions
Loading

.github/icons/spring.svg

Lines changed: 1 addition & 0 deletions
Loading

.github/workflows/cards.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Update README cards
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *" # Runs once daily at midnight
6+
workflow_dispatch: # Allow manual trigger
7+
8+
permissions: {}
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
14+
permissions:
15+
contents: write
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- name: Generate stats card
21+
uses: soulteary/github-readme-stats-action@v1.0.0
22+
with:
23+
card: stats
24+
options: username=${{ github.repository_owner }}&theme=dracula&show_icons=true&cache_seconds=7200
25+
path: .github/profile/stats.svg
26+
token: ${{ secrets.GITHUB_TOKEN }}
27+
28+
- name: Generate trophy card
29+
uses: soulteary/github-profile-trophy-action@v1.0.0
30+
with:
31+
options: 'username=${{ github.repository_owner }}&theme=dracula&column=7&margin-w=15&margin-h=15&no-frame=true'
32+
path: .github/profile/trophy.svg
33+
token: ${{ secrets.GITHUB_TOKEN }}
34+
35+
- name: Commit cards
36+
run: |
37+
git config user.name "github-actions[bot]"
38+
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
39+
git add .github/profile/*.svg
40+
git commit -m "chore: update README cards" || exit 0
41+
git push

.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# IDE
2+
.idea/
3+
.vscode/
4+
*.iml
5+
6+
# Cursor
7+
.cursorindexingignore
8+
.cursorrules
9+
10+
# Local History
11+
.history/
12+
13+
# SpecStory
14+
.specstory/
15+
16+
# OS
17+
.DS_Store
18+
Thumbs.db
19+
20+
# Logs
21+
*.log

0 commit comments

Comments
 (0)